Sync OpenAstronomy Workflows from upstream #17
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: Sync OpenAstronomy Workflows from upstream | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run every Saturday at 0900 UTC | |
- cron: '0 9 * * 6' | |
jobs: | |
sync-workflows: | |
if: github.repository != 'OpenAstronomy/github-actions-workflows' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout target repository | |
uses: actions/checkout@v4 | |
with: | |
# Checkout the repository where the workflow is running | |
ref: main | |
fetch-depth: 0 | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
- name: Set up git | |
run: | | |
git config --global user.name "GitHub" | |
git config --global user.email "actions@githubworker" | |
- name: Pull from OpenAstronomy/github-actions-workflows main branch | |
run: | | |
git remote add upstream https://github.com/OpenAstronomy/github-actions-workflows.git | |
git fetch upstream main | |
git merge upstream/main | |
- name: Push changes to the target repository | |
run: | | |
git push origin main |