update-sources-next #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated by openshift-pipelines/hack. DO NOT EDIT. | |
name: update-sources-next | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: "30 */12 * * *" # At minute 30 past every 12th hour. | |
jobs: | |
update-sources: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'openshift-pipelines' # do not run this elsewhere | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout the current repo | |
uses: actions/checkout@v4 | |
with: | |
ref: next | |
- name: Clone tektoncd/cli | |
run: | | |
rm -fR upstream | |
git clone https://github.com/tektoncd/cli upstream | |
pushd upstream | |
git checkout -B release-v0.38.1 origin/release-v0.38.1 | |
popd | |
- name: Commit new changes | |
run: | | |
git config user.name openshift-pipelines-bot | |
git config user.email pipelines-extcomm@redhat.com | |
git checkout -b actions/update/sources-next | |
pushd upstream | |
OLD_COMMIT=$(cat ../head) | |
NEW_COMMIT=$(git rev-parse HEAD) | |
echo Previous commit: ${OLD_COMMIT} | |
git show --stat ${OLD_COMMIT} | |
echo New commit: ${NEW_COMMIT} | |
git show --stat ${NEW_COMMIT} | |
git diff --stat ${NEW_COMMIT}..${OLD_COMMIT} > /tmp/diff.txt | |
git rev-parse HEAD > ../head | |
popd | |
rm -rf upstream/.git | |
git add upstream head .konflux | |
if [[ -z $(git status --porcelain --untracked-files=no) ]]; then | |
echo "No change, exiting" | |
exit 0 | |
fi | |
git commit -F- <<EOF | |
[bot] Update from tektoncd/cli to ${NEW_COMMIT} | |
$ git diff --stat ${NEW_COMMIT}..${OLD_COMMIT} | |
$(cat /tmp/diff.txt | sed 's/^/ /') | |
https://github.com/tektoncd/cli/compare/${NEW_COMMIT}..${OLD_COMMIT} | |
EOF | |
git push -f origin actions/update/sources-next | |
if [ "$(gh pr list --base next --head actions/update/sources-next --json url --jq 'length')" = "0" ]; then | |
echo "creating PR..." | |
gh pr create -B next -H actions/update/sources-next --label=automated --label=upstream --fill | |
else | |
echo "a PR already exists, editing..." | |
gh pr edit --title "[bot] Update from tektoncd/cli to ${NEW_COMMIT}" --body "$(cat /tmp/diff.txt | sed 's/^/ /')" | |
fi | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |