-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(templates): add workflow to update workflows from templates
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# This workflow is provided via the organization template repository | ||
# | ||
# https://github.com/nextcloud/.github | ||
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization | ||
|
||
name: Update all workflows from org templates | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# At 4:00 on Sundays | ||
- cron: '0 4 * * 0' | ||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
branches: ["main", "stable3.2"] | ||
#branches: ["main", "master", "stable27", "stable26", "stable25"] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | ||
with: | ||
ref: ${{ matrix.branches }} | ||
|
||
- name: Checkout workflows repository | ||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | ||
with: | ||
path: workflow-templates | ||
repository: nextcloud/.github | ||
|
||
- name: Copy workflows | ||
run: | | ||
rsync -rv --existing --include="*/" --include="*.yml" --exclude="*" ./workflow-templates/workflow-templates/ ./.github/workflows/ | ||
rm -r workflow-templates | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v4 | ||
with: | ||
body: Automated update of all workflows from https://github.com/nextcloud/.github | ||
commit-message: Update all workflows from templates | ||
committer: GitHub <noreply@github.com> | ||
author: nextcloud-command <nextcloud-command@users.noreply.github.com> | ||
signoff: true | ||
title: "[${{ matrix.branches }}] Update all workflows from templates" | ||
#token: ${{ secrets.COMMAND_BOT_PAT }} | ||
branch: automated/noid/${{ matrix.branches }}-update-workflows | ||
labels: | | ||
dependencies | ||
3. to review |