Update Community Events #35
This file contains hidden or 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: Update Community Events | |
| on: | |
| schedule: | |
| - cron: '0 */6 * * *' | |
| workflow_dispatch: | |
| concurrency: | |
| group: update-community-events | |
| cancel-in-progress: false | |
| jobs: | |
| update: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version: '20' | |
| - run: npm install node-ical@0.20.0 | |
| - run: node .github/scripts/update-events.js | |
| - uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7 | |
| with: | |
| commit-message: 'chore: update community events from Google Calendar' | |
| title: 'chore: update community events' | |
| branch: auto/update-community-events | |
| delete-branch: true | |
| signoff: true | |
| body: Automated community events update from Google Calendar. |