From ef4b22c6dc7ea71888038addafaa5abaf7b23c9f Mon Sep 17 00:00:00 2001 From: Florian Wilhelm Date: Sun, 1 May 2022 12:14:04 +0200 Subject: [PATCH] Add workflow to update repos --- .github/workflows/update.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/update.yml diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 0000000..e77824d --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,14 @@ +name: Update forked repos +on: + workflow_dispatch: + schedule: + # At 07:00 UTC on Sunday + - cron: '0 7 * * 0' +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: python3 update-forks.py + env: + GITHUB_TOKEN: ${{ secrets.PAT }} \ No newline at end of file