.github/workflows/schedule.yml #154
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 0 1-15 * *' | |
jobs: | |
# Run our Rainforest tests. `run_group_id` should point to the Run Group you | |
# want to use for your releases. See the action documentation for additional | |
# options you can use: https://github.com/marketplace/actions/rainforest-qa-github-action | |
run_rainforest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: rainforestapp/github-action@v3 | |
with: | |
token: ${{ secrets.RF_MAIN_API_TOKEN }} | |
run_group_id: 7597 |