.github/workflows/after-deploy.yml #941
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
on: | |
schedule: | |
- cron: '0 7 * * *' # Run every day at 7AM UTC | |
workflow_dispatch: # Enable Manual Runs | |
jobs: | |
on_deploy: | |
runs-on: ubuntu-latest | |
name: On Deploy | |
steps: | |
- name: After Deploy | |
uses: Firelemons/on-deploy@v2.2.1 | |
with: | |
project_name: "CASA Volunteer Portal" | |
done_column_card_limit: "16" | |
done_column_name: "Done (in prod!)" | |
QA_column_name: "Merged to QA" | |
token: ${{secrets.GITHUB_TOKEN}} |