Skip to content

Commit

Permalink
Merge pull request #1 from jbtrystram/bump_job_jbtrystram
Browse files Browse the repository at this point in the history
Bump job jbtrystram
  • Loading branch information
jbtrystram authored Feb 29, 2024
2 parents 72db29c + 5bb3857 commit aaede34
Showing 1 changed file with 43 additions and 25 deletions.
68 changes: 43 additions & 25 deletions .github/workflows/openshift-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,23 @@ on:
# We could do push: branches: [testing-devel] but that would restart
# downstream CI a lot
schedule:
- cron: '0 0 * * *'
- cron: '0/5 * * * *'
workflow_dispatch:
inputs:
branch-name:
# Allow overriding branch for syncs that need manual fixups
description: PR branch name
required: true
default: fcc-sync
branch:
# Allow specifying the source branch for backports
description: Source branch to use for PR
required: true
default: testing-devel
target-branch:
# Allow specifying the target branch for backports
description: Target branch to open PR against
required: true
default: master

type: choice
options:
- testing-devel
- rhcos-4.15
- rhcos-4.14
- rhcos-4.13
- rhcos-4.12
- rhcos-4.11
- rhcos-4.10
permissions:
# none at all
contents: none
Expand All @@ -30,35 +28,54 @@ jobs:
update-submodule:
name: Update fedora-coreos-config submodule
runs-on: ubuntu-latest
env:
SOURCE_BRANCH: ${{ github.event.inputs.branch }}
steps:
- name: Set branches values
run: |
case $SOURCE_BRANCH in
testing-devel)
echo "TARGET_BRANCH=master" >> $GITHUB_ENV
echo "BRANCH_NAME=fcc-sync" >> $GITHUB_ENV
;;
rhcos-*)
# split the string around the -
array=(${SOURCE_BRANCH//-/ })
OCP_VERSION=${array[1]}
echo "TARGET_BRANCH=release-${OCP_VERSION}" >> $GITHUB_ENV
echo "BRANCH_NAME=fcc-sync-${SOURCE_BRANCH}" >> $GITHUB_ENV
;;
*)
# Default branches names for on.schedule case
echo "SOURCE_BRANCH=${SOURCE_BRANCH}:-testing-devel" >> $GITHUB_ENV
echo "TARGET_BRANCH=master" >> $GITHUB_ENV
echo "BRANCH_NAME=fcc-sync-${SOURCE_BRANCH}" >> $GITHUB_ENV
;;
esac
- name: Check out repository
uses: actions/checkout@v3
with:
repository: openshift/os
repository: jbtrystram/openshift-os
# We need an unbroken commit chain when pushing to the fork. Don't
# make assumptions about which commits are already available there.
fetch-depth: 0
# We need to checkout against the target branch
ref: ${{ env.TARGET_BRANCH }}

- name: Update submodule
env:
BRANCH_NAME: ${{ github.event.inputs.branch-name }}
SOURCE_BRANCH: ${{ github.event.inputs.branch }}
TARGET_BRANCH: ${{ github.event.inputs.target-branch }}
run: |
set -euxo pipefail
# Default branches names for on.schedule case
echo "BRANCH_NAME=${BRANCH_NAME:-fcc-sync}" >> $GITHUB_ENV
echo "SOURCE_BRANCH=${SOURCE_BRANCH:-testing-devel}" >> $GITHUB_ENV
echo "TARGET_BRANCH=${TARGET_BRANCH:-master}" >> $GITHUB_ENV
git submodule init
git submodule update
cd fedora-coreos-config
# the submodule init only fetch the submodule commit and the default branch `testing-devel`
git fetch origin ${SOURCE_BRANCH}
# Omit CoreOS Bot commits from the log message, since they generally
# only affect FCOS
git shortlog "HEAD..testing-devel" --perl-regexp \
git shortlog "HEAD..FETCH_HEAD" --perl-regexp \
--author='^((?!CoreOS Bot <[email protected]>).*)$' \
> $RUNNER_TEMP/shortlog
Expand All @@ -67,6 +84,7 @@ jobs:
echo "No non-trivial changes; exiting"
exit 0
fi
git checkout $SOURCE_BRANCH
marker=OPENSHIFT-OS-END-OF-LOG-MARKER-$RANDOM$RANDOM$RANDOM
Expand All @@ -77,10 +95,10 @@ jobs:
EOF
- name: Open pull request
uses: peter-evans/create-pull-request@v4.2.3
uses: peter-evans/create-pull-request@v6.0.0
with:
token: ${{ secrets.COREOSBOT_RELENG_TOKEN }}
push-to-fork: coreosbot-releng/os
push-to-fork: jbtrystram/openshift-os
branch: ${{ env.BRANCH_NAME }}
base: ${{ env.TARGET_BRANCH }}
commit-message: |
Expand Down

0 comments on commit aaede34

Please sign in to comment.