Update brave-version.txt #5788
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: Update brave-version.txt | |
on: | |
schedule: | |
- cron: "17 * * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# only run manually or on schedule, but only for the main repo | |
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'webrecorder/browsertrix-browser-base') | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GHPROJECT_TOKEN }} | |
- name: Set up Git | |
run: | | |
git config user.email "dev@webrecorder.net" | |
git config user.name "Webrecorder Dev Automation" | |
- name: Run update script | |
run: ./update-brave.sh | |
shell: bash | |