mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 14:50:16 +00:00
d6ffd868ee
I noticed the auto-labeling was working but not the auto-closing. Looking at recent actions runs I see that we need to specify the token even if we're not giving our own special token. See https://github.com/psf/requests/actions/runs/7057701782/job/19211845073#step:2:13 for additional context, namely ``` gh: To use GitHub CLI in a GitHub Actions workflow, set the GH_TOKEN environment variable. Example: env: GH_TOKEN: ${{ github.token }} ```
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
name: 'Autoclose Issues'
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
jobs:
|
|
close_qa:
|
|
if: github.event.label.name == 'actions/autoclose-qa'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- env:
|
|
ISSUE_URL: ${{ github.event.issue.html_url }}
|
|
GH_TOKEN: ${{ github.token }}
|
|
run: |
|
|
gh issue close $ISSUE_URL \
|
|
--comment "As described in the template, we won't be able to answer questions on this issue tracker. Please use [Stack Overflow](https://stackoverflow.com/)" \
|
|
--reason completed
|
|
gh issue lock $ISSUE_URL --reason off_topic
|
|
close_feature_request:
|
|
if: github.event.label.name == 'actions/autoclose-feat'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- env:
|
|
ISSUE_URL: ${{ github.event.issue.html_url }}
|
|
GH_TOKEN: ${{ github.token }}
|
|
run: |
|
|
gh issue close $ISSUE_URL \
|
|
--comment "As described in the template, Requests is not accepting feature requests" \
|
|
--reason "not planned"
|
|
gh issue lock $ISSUE_URL --reason off_topic
|