-
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
Closed
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
ff855cf
Allow hyphen in url - asset library
a70e1a5
git copilot suggestion
4d24155
Redo the fix with minimal change
6a43f63
Codeql test
619b5c0
re-iterate with codeql
1dee45f
Retest performance
a0fe205
Potential fix for code scanning alert no. 27: Inefficient regular exp…
himaniraghav3 374be0c
revert codeql suggestion
c7d59d7
Merge pull request #1621 from topcoder-platform/PM-971
himaniraghav3 1b719fb
feat: added show only my projects for project managers
hentrymartin 441e6d7
fix: removed console log
hentrymartin 592a0f3
fix: lint
hentrymartin 4fd1543
PM-973 - move add user to own component
vas3a 81a1173
PM-973 - invite user modal
vas3a 06ab559
PM-973 - invite by email
vas3a 90f0395
Merge pull request #1622 from topcoder-platform/pm-974_1
hentrymartin 41329e1
feat: allow PM to view users and delete users from project
hentrymartin 7eccfe3
fix: all projects challenges
hentrymartin 18768fd
Merge pull request #1624 from topcoder-platform/pm-974_2
hentrymartin 592b787
PM-973 - add invitation dialog after user accepts invitation through …
vas3a 5823808
Merge remote-tracking branch 'origin/develop' into PM-973_invite-by-mail
vas3a b184e86
fix: projects list in challenges tab
hentrymartin 125cf7d
Merge pull request #1625 from topcoder-platform/pm-974_3
hentrymartin 8af3cf0
Merge pull request #1623 from topcoder-platform/PM-973_invite-by-mail
vas3a 9605fa2
add AI PR Reviewer action
kkartunov 530c136
rename job
kkartunov 3ddfca7
adds clear cache step
kkartunov cf7491a
workflow update
kkartunov eedc3ff
add @master ref
kkartunov ac1de1a
job rename
kkartunov cf73dbc
restore name
kkartunov 392e5f4
add missing assets
vas3a de59094
Merge pull request #1629 from topcoder-platform/PM-973_invite-by-mail
vas3a 52fb0ab
code review permissions
kkartunov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: AI PR Reviewer | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
permissions: | ||
pull-requests: write | ||
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) | ||
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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 change from
permissions: write-all
to specifyingpull-requests: write
is more restrictive, which is generally a good practice for security. However, ensure that this change does not inadvertently remove necessary permissions for other actions that might be required by the workflow. Double-check if additional permissions are needed for other parts of the workflow.