-
Notifications
You must be signed in to change notification settings - Fork 51
[PROD RELEASE] - WorkManager Changes - Connect Decommission #1631
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 33 commits
ff855cf
a70e1a5
4d24155
6a43f63
619b5c0
1dee45f
a0fe205
374be0c
c7d59d7
1b719fb
441e6d7
592a0f3
4fd1543
81a1173
06ab559
90f0395
41329e1
7eccfe3
18768fd
592b787
5823808
b184e86
125cf7d
8af3cf0
9605fa2
530c136
3ddfca7
cf7491a
eedc3ff
ac1de1a
cf73dbc
392e5f4
de59094
52fb0ab
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 |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| name: AI PR Reviewer | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - synchronize | ||
| permissions: write-all | ||
|
||
| jobs: | ||
| tc-ai-pr-review: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout Repo | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: TC AI PR Reviewer | ||
| uses: topcoder-platform/tc-ai-pr-reviewer@master | ||
| with: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # The GITHUB_TOKEN is there by default so you just need to keep it like it is and not necessarily need to add it as secret as it will throw an error. [More Details](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret) | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comment about the |
||
| LAB45_API_KEY: ${{ secrets.LAB45_API_KEY }} | ||
| exclude: "**/*.json, **/*.md" # Optional: exclude patterns separated by commas | ||
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.
The permission
write-allis quite broad. Consider specifying more granular permissions to adhere to the principle of least privilege. Refer to GitHub's permissions documentation for more details.