Mark Hacktoberfest as expired #4
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: Mark Hacktoberfest as expired | |
on: | |
schedule: | |
- cron: '0 0 2 11 *' # Every November 2 | |
jobs: | |
execute: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/[email protected] | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Read .nvmrc | |
run: echo "##[set-output name=nvmrc;]$(cat .nvmrc)" | |
id: nvm | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ steps.nvm.outputs.nvmrc }} | |
- name: Run expire script | |
run: ./scripts/expire-hacktoberfest.js | |
- name: Commit & push | |
run: | | |
git config --local user.name "Github Actions Bot" | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add data.json | |
git commit -m "Mark hacktoberfest opportunities as expired" | |
git push -u origin master |