Updating and labeling all issues #129
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
run-name: Updating and labeling all issues | |
on: | |
schedule: | |
# * needs quoting in YAML | |
- cron: '0 3 * * *' | |
env: | |
GITHUB_REPO_NAME: instruments | |
jobs: | |
run-updated-reopen: | |
runs-on: ubuntu-latest | |
name: Update and label issue job | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run issues step | |
uses: ./.github/actions/ | |
with: | |
workflow-action: update-labels | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |