Schedule Friday 0700 #21
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
name: Schedule Friday 0700 | |
# This action runs at 7:00 UTC/ 0:00 PDT (midnight) every Friday, except during July and December. | |
on: | |
schedule: | |
- cron: '0 7 * 1-6,8-11 5' | |
workflow_dispatch: | |
jobs: | |
Add-Update-Label-to-Issues-Weekly: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.HACKFORLA_GRAPHQL_TOKEN }} | |
script: | | |
const script = require('./github-actions/trigger-schedule/add-update-label-weekly/add-label.js'); | |
script({ g: github, c: context }); |