Bump collab-staging Tag #31
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: Bump collab-staging Tag | |
on: | |
schedule: | |
# Fire every day at 16:00 UTC (At the start of the US workday) | |
- cron: "0 16 * * *" | |
jobs: | |
update-collab-staging-tag: | |
if: github.repository_owner == 'zed-industries' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Update collab-staging tag | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git tag -f collab-staging | |
git push origin collab-staging --force |