|
13 | 13 | # Checks if user is on the 'website-write' team, else halts workflow |
14 | 14 | - name: Check Team Membership |
15 | 15 | id: check-team-membership |
16 | | - uses: actions/github-script@v7 |
| 16 | + uses: actions/github-script@v8 |
17 | 17 | with: |
18 | 18 | github-token: ${{ secrets.HACKFORLA_GRAPHQL_TOKEN }} |
19 | 19 | script: | |
|
26 | 26 | - if: ${{ steps.check-team-membership.outputs.result == 'true' }} |
27 | 27 | name: Check Labels |
28 | 28 | id: check-labels |
29 | | - uses: actions/github-script@v7 |
| 29 | + uses: actions/github-script@v8 |
30 | 30 | with: |
31 | 31 | script: | |
32 | 32 | const script = require('./github-actions/trigger-issue/add-missing-labels-to-issues/check-labels.js') |
|
37 | 37 | - if: ${{ steps.check-team-membership.outputs.result == 'true' }} |
38 | 38 | name: Post Comment |
39 | 39 | id: post-comment |
40 | | - uses: actions/github-script@v7 |
| 40 | + uses: actions/github-script@v8 |
41 | 41 | with: |
42 | 42 | script: | |
43 | 43 | const results = ${{ steps.check-labels.outputs.result }} |
|
53 | 53 | - uses: actions/checkout@v5 |
54 | 54 | # Checks if the issue has the required roles (front end, back end/devOps, design, or user research) |
55 | 55 | - name: Check Labels Prelim |
56 | | - uses: actions/github-script@v7 |
| 56 | + uses: actions/github-script@v8 |
57 | 57 | id: check-labels-prelim |
58 | 58 | with: |
59 | 59 | script: | |
|
64 | 64 | # Posts the comment based on the result of the previous step |
65 | 65 | - name: Post assigning issue comment |
66 | 66 | id: assigned-comment |
67 | | - uses: actions/github-script@v7 |
| 67 | + uses: actions/github-script@v8 |
68 | 68 | with: |
69 | 69 | github-token: ${{ secrets.HACKFORLA_GRAPHQL_TOKEN }} |
70 | 70 | script: | |
|
81 | 81 | steps: |
82 | 82 | - uses: actions/checkout@v5 |
83 | 83 | - name: Add feature branch comment |
84 | | - uses: actions/github-script@v7 |
| 84 | + uses: actions/github-script@v8 |
85 | 85 | with: |
86 | 86 | script: | |
87 | 87 | const script = require('./github-actions/trigger-issue/feature-branch-comment/add-feature-branch-comment.js') |
|
93 | 93 | steps: |
94 | 94 | - uses: actions/checkout@v5 |
95 | 95 | - name: Hide feature branch comment |
96 | | - uses: actions/github-script@v7 |
| 96 | + uses: actions/github-script@v8 |
97 | 97 | with: |
98 | 98 | script: | |
99 | 99 | const script = require('./github-actions/trigger-issue/feature-branch-comment/hide-feature-branch-comment.js') |
|
0 commit comments