| 189 | owner: ${{ github.repository_owner }} | 192 | owner: ${{ github.repository_owner }} |
| 190 | | 193 | |
| 191 | - name: Remove Stale Label | 194 | - name: Remove Stale Label |
| | 195 | if: always() |
| 192 | # 🤖 Issues Helper | 196 | # 🤖 Issues Helper |
| 193 | # https://github.com/marketplace/actions/issues-helper | 197 | # https://github.com/marketplace/actions/issues-helper |
| 194 | uses: actions-cool/issues-helper@v3.6.0 | 198 | uses: actions-cool/issues-helper@v3.6.0 |
| 195 | with: | 199 | with: |
| 196 | actions: 'remove-labels' | 200 | actions: 'remove-labels' |
| 197 | token: ${{ steps.app.outputs.token }} | 201 | token: ${{ steps.app.outputs.token || github.token }} # Use fallback to GITHUB_TOKEN if app token is not available |
| 198 | issue-number: ${{ github.event.pull_request.number }} | 202 | issue-number: ${{ github.event.pull_request.number }} |
| 199 | labels: '⚰️ Stale' | 203 | labels: '⚰️ Stale' |
| 200 | | 204 | |