-
Notifications
You must be signed in to change notification settings - Fork 1
Adding testing evironment to the lint and build yaml files for github actions #72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ on: | |
| jobs: | ||
| ruff: | ||
| runs-on: ubuntu-latest | ||
| environment: testing | ||
| permissions: | ||
|
Comment on lines
9
to
12
|
||
| contents: write | ||
|
|
||
|
|
@@ -34,6 +35,7 @@ jobs: | |
|
|
||
| ty: | ||
| runs-on: ubuntu-latest | ||
| environment: testing | ||
|
|
||
|
Comment on lines
36
to
39
|
||
| steps: | ||
| - uses: actions/checkout@v6 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change only causes a manual approval gate if the
testingenvironment is configured in the repo settings with required reviewers/protection rules. If it isn’t configured (or doesn’t exist yet), the job will run without approval, so you may want to document/setup the environment as part of this PR (or add a note in the workflow/README).