Skip to content

Commit 28ddf74

Browse files
committed
Create 2.3-branch
1 parent 1c002dd commit 28ddf74

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.github/workflows/build-release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,18 @@ jobs:
5858
workflow_id: 'build-release.yml',
5959
ref: 'release-2.2'
6060
})
61+
62+
- name: 'Run assets build (2.3)'
63+
uses: actions/github-script@v7
64+
with:
65+
# Token has to be generated on a user account that controls the remote repository.
66+
# The _only_ scope to select is "Access public repositories", nothing more.
67+
github-token: "${{ secrets.PAT_TOKEN }}"
68+
debug: true
69+
script: |
70+
await github.rest.actions.createWorkflowDispatch({
71+
owner: 'simplesamlphp',
72+
repo: 'simplesamlphp-assets-base',
73+
workflow_id: 'build-release.yml',
74+
ref: 'release-2.3'
75+
})

.github/workflows/update-dependencies.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,18 @@ jobs:
5858
workflow_id: 'update-dependencies.yml',
5959
ref: 'release-2.2'
6060
})
61+
62+
- name: 'Run developer-tools update (2.3)'
63+
uses: actions/github-script@v7
64+
with:
65+
# Token has to be generated on a user account that controls the remote repository.
66+
# The _only_ scope to select is "Access public repositories", nothing more.
67+
github-token: "${{ secrets.PAT_TOKEN }}"
68+
debug: true
69+
script: |
70+
await github.rest.actions.createWorkflowDispatch({
71+
owner: 'simplesamlphp',
72+
repo: 'simplesamlphp-assets-base',
73+
workflow_id: 'update-dependencies.yml',
74+
ref: 'release-2.3'
75+
})

0 commit comments

Comments
 (0)