S3EventNotification deserialization no longer works with AWS SDK v2 S3 Event Notification #546
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
name: Issue triager | |
on: | |
issues: | |
types: [opened] | |
permissions: | |
contents: read | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: damccorm/tag-ur-it@master | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: "./.github/triage-rules.yml" | |
- if: always() | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['status: waiting-for-triage'] | |
}) |