All checks were successful
Build PR in OBS / Build PR in OBS (pull_request_target) Successful in -4s
Cron is configured to run every night on a daily basis which is great. However, this has potential to break all the SV pipelines as a commit that gets merged to EIB will result in a new image build without the SV team have chance to validate and reflect the change to SV. This commit configures trigger_devel workflow to run midday every week day so the SV team can make the necessary validations and updates accordingly. Please note that this should be considered as a temporary fix and an automated way to bring new EIB versions to SV should be developed collaboratively.
32 lines
922 B
YAML
32 lines
922 B
YAML
name: Trigger Devel Packages
|
|
on:
|
|
# NOTE (fdegir): Cron is set to run midday every weekday
|
|
schedule:
|
|
- cron: "0 12 * * 1-5
|
|
|
|
jobs:
|
|
sync-pr-project:
|
|
name: "Trigger source services for devel packages that changed"
|
|
runs-on: tumbleweed
|
|
steps:
|
|
- name: Setup OSC
|
|
run: |
|
|
mkdir -p ~/.config/osc
|
|
cat >~/.config/osc/oscrc <<'EOF'
|
|
[general]
|
|
apiurl = https://api.opensuse.org
|
|
|
|
[https://api.opensuse.org]
|
|
user=${{ vars.OBS_USERNAME }}
|
|
pass=${{ secrets.OBS_PASSWORD }}
|
|
EOF
|
|
# Waiting on PR to get merged for support in upstream action/checkout action
|
|
- uses: 'https://github.com/yangskyboxlabs/action-checkout@sha256'
|
|
name: Checkout repository
|
|
with:
|
|
object-format: 'sha256'
|
|
ref: 'devel'
|
|
- name: "Trigger packages"
|
|
run: |
|
|
python3 .obs/trigger_package.py
|