Skip to content

Commit d8cff9b

Browse files
Github Actions: Bump actions/github-script from 8.0.0 to 9.0.0
Bumps [actions/github-script](https://github.com/actions/github-script) from 8.0.0 to 9.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@ed59741...3a2844b) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 360bd04 commit d8cff9b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/auto-label-issues.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
issues: write
2222
steps:
2323
- name: Add 'Closed' label when issue is closed
24-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
24+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
2525
with:
2626
script: |
2727
await github.rest.issues.addLabels({
@@ -32,7 +32,7 @@ jobs:
3232
});
3333
3434
- name: Remove 'triage', 'investigating', and 'in progress' labels if present (on close)
35-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
35+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
3636
with:
3737
script: |
3838
const labelsToRemove = ['triage', 'investigating', 'in progress'];
@@ -59,7 +59,7 @@ jobs:
5959
issues: write
6060
steps:
6161
- name: Add 'investigating' label when issue is assigned
62-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
62+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
6363
with:
6464
script: |
6565
// Add the 'investigating' label if not already present
@@ -78,7 +78,7 @@ jobs:
7878
}
7979
8080
- name: Remove 'triage' label if present (on assign)
81-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
81+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
8282
with:
8383
script: |
8484
const labels = (await github.rest.issues.listLabelsOnIssue({

0 commit comments

Comments
 (0)