Automated commit (Turing) #1489
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
# Workflow to copy successful builds to main branch | |
--- | |
name: Copy Successful builds from testing to main branch | |
on: | |
# Triggers the workflow on push to testing branch, containing bench files | |
push: | |
branches: | |
- 'testing' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
copy_successful_builds: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run script to copy successful builds | |
env: | |
SLACK_API_URL: ${{ secrets.SLACK_API_URL }} | |
run: ./scripts/copy-successful-builds.sh |