We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 251a2ca commit 2ca17f4Copy full SHA for 2ca17f4
.github/workflows/new_versions.yaml
@@ -7,10 +7,17 @@ on:
7
8
jobs:
9
update_versions:
10
+ strategy:
11
+ matrix:
12
+ branch: [main]
13
+
14
15
if: (github.event_name == 'schedule' && github.repository == 'emscripten-forge/recipes') || (github.event_name != 'schedule')
16
runs-on: [ubuntu-latest]
17
steps:
18
- uses: actions/checkout@v4
19
+ with:
20
+ ref: main
21
22
- name: Install micromamba
23
uses: mamba-org/setup-micromamba@v1
@@ -19,6 +26,6 @@ jobs:
26
27
- name: Determine new package version and open/merge PRs
28
shell: bash -l -eo pipefail {0}
- run: python -m emci bot bump-recipes-versions
29
+ run: python -m emci bot bump-recipes-versions ${{ matrix.branch }}
30
env:
24
- GITHUB_TOKEN: ${{ secrets.BOT_ACCESS_TOKEN }}
31
+ GITHUB_TOKEN: ${{ secrets.BOT_ACCESS_TOKEN }}
0 commit comments