-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into docs/default-tag-value-for-fromEcrRepository
- Loading branch information
Showing
58 changed files
with
1,969 additions
and
1,002 deletions.
There are no files selected for viewing
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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 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,46 @@ | ||
name: Lock Closed Issues and PRs with message | ||
|
||
on: | ||
pull_request_target: | ||
types: [closed] | ||
issues: | ||
types: [closed] | ||
|
||
jobs: | ||
auto_comment: | ||
permissions: | ||
pull-requests: write | ||
issues: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: aws-actions/closed-issue-message@v1 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
message: | | ||
Comments on closed issues and PRs are hard for our team to see. | ||
If you need help, please open a new issue that references this one. | ||
lock: | ||
permissions: | ||
pull-requests: write | ||
issues: write | ||
runs-on: ubuntu-latest | ||
needs: auto_comment # only run after comment is complete | ||
steps: | ||
- name: Lock closed issue or PR | ||
run: | | ||
if [ "${{ github.event_name }}" == "issues" ]; then | ||
ISSUE_NUMBER=${{ github.event.issue.number }} | ||
ISSUE_URL=https://api.github.com/repos/${{ github.repository }}/issues/${ISSUE_NUMBER}/lock | ||
else | ||
ISSUE_NUMBER=${{ github.event.pull_request.number }} | ||
ISSUE_URL=https://api.github.com/repos/${{ github.repository }}/issues/${ISSUE_NUMBER}/lock | ||
fi | ||
curl -s -X PUT -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
${ISSUE_URL} \ | ||
-d @- <<EOF | ||
{ | ||
"lock_reason": "resolved" | ||
} | ||
EOF |
This file contains 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
24 changes: 20 additions & 4 deletions
24
...61df08d8dbf7cd37e60bf216fb982a00/index.py → ...cc3d68f525fe08a0fe0f014069ae539c/index.py
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
....snapshot/asset.44e9c4d7a5d3fd2d677e1a7e416b2b56f6b0104bd5eff9cac5557b4c65a9dc61/index.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
23 changes: 18 additions & 5 deletions
23
...ws-appconfig/test/integ.configuration.js.snapshot/aws-appconfig-configuration.assets.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.