Schedule Monthly #2
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 Monthly | |
# This action runs at 11:00 UTC/ 3:00 PDT on the first day of the month. | |
on: | |
schedule: | |
- cron: 0 11 1 * * | |
jobs: | |
trim_contributors: | |
runs-on: ubuntu-latest | |
if: github.repository == 'hackforla/website' | |
steps: | |
# Checkout repo | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Setup node | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
# Install dependencies to run js file | |
- name: Install npm dependencies | |
run: npm install | |
working-directory: ./github-actions/trigger-schedule/github-data | |
# Run js file- check action logs for inactive members and removes from 'website-write' | |
- name: Trim Members | |
env: | |
token: ${{ secrets.HACKFORLA_BOT_PA_TOKEN }} | |
run: node github-actions/trigger-schedule/github-data/contributors-data.js |