Manage Contribution Board - Hourly #13610
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: Manage Contribution Board - Hourly | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
jobs: | |
manage_project_board: | |
runs-on: ubuntu-latest | |
if: github.repository == 'demisto/content' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.7" | |
- name: Get project manager | |
run: | | |
pip install --upgrade pip | |
pip install github-automation==0.2.3 | |
- name: Manage project | |
run: | | |
github-automation manage -c .github/project_conf/contributions.ini | |
env: | |
GITHUB_TOKEN: ${{ secrets.CONTENTBOT_GH_ADMIN_TOKEN }} |