File tree Expand file tree Collapse file tree 4 files changed +9
-18
lines changed
Expand file tree Collapse file tree 4 files changed +9
-18
lines changed Original file line number Diff line number Diff line change 88
99- Treat all work as PUBLIC. Private ` feature/x ` branches will not be squash-merged at release time.
1010- Your code changes must meet the guidelines in [ CONTRIBUTING.md] ( https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines ) .
11-
12- License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
11+ - License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ Invalid pull request title: \`${title}\`
130130 * scope: lowercase, <30 chars
131131 * subject: must be <100 chars
132132 * documentation: https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#pull-request-title
133+ * Hint: *close and re-open the PR* to re-trigger CI (after fixing the PR title).
133134`
134135 : `Pull request title matches the [expected format](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#pull-request-title).`
135136
Original file line number Diff line number Diff line change 77 push :
88 branches : [master, staging]
99 pull_request :
10- branches : [master, feature/*, staging]
11- # Default = opened + synchronize + reopened.
12- # We also want "edited" so that lint-commits runs when PR title is updated.
10+ # By default, CI will trigger on opened/synchronize/reopened event types.
1311 # https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull_request
14- types :
15- - edited
16- - opened
17- - reopened
18- - synchronize
12+ # Note: To re-run `lint-commits` after fixing the PR title, close-and-reopen the PR.
13+ branches : [master, feature/*, staging]
1914
2015# Cancel old jobs when a pull request is updated.
2116concurrency :
@@ -24,6 +19,7 @@ concurrency:
2419
2520jobs :
2621 lint-commits :
22+ # Note: To re-run `lint-commits` after fixing the PR title, close-and-reopen the PR.
2723 runs-on : ubuntu-latest
2824 steps :
2925 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -6,15 +6,10 @@ name: Notifications
66on :
77 # `pull_request_target` (as opposed to `pull_request`) gives permissions to comment on PRs.
88 pull_request_target :
9- branches : [master, feature/*, staging]
10- # Default = opened + synchronize + reopened.
11- # We also want "edited" so that changelog notifications runs when PR title is updated.
9+ # By default, CI will trigger on opened/synchronize/reopened event types.
1210 # https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull_request
13- types :
14- - edited
15- - opened
16- - reopened
17- - synchronize
11+ # Note: To re-run `lint-commits` after fixing the PR title, close-and-reopen the PR.
12+ branches : [master, feature/*, staging]
1813
1914# Cancel old jobs when a pull request is updated.
2015concurrency :
You can’t perform that action at this time.
0 commit comments