forked from emscripten-forge/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (25 loc) · 802 Bytes
/
new_versions.yaml
File metadata and controls
31 lines (25 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Version Ticker Bot
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
update_versions:
strategy:
matrix:
branch: [main, emscripten-3.1.73]
if: (github.event_name == 'schedule' && github.repository == 'emscripten-forge/recipes') || (github.event_name != 'schedule')
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: Install micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ci_env.yml
- name: Determine new package version and open/merge PRs
shell: bash -l -eo pipefail {0}
run: python -m emci bot bump-recipes-versions ${{ matrix.branch }}
env:
GITHUB_TOKEN: ${{ secrets.BOT_ACCESS_TOKEN }}