Skip to content

Update go.mod for testing #19

Update go.mod for testing

Update go.mod for testing #19

name: Update go.mod for testing
on:
schedule:
- cron: "0 4 * * *" # time is in UTC
jobs:
updateAndCreatePR:
env:
GOFLAGS: "-mod=mod"
GOWORK: "off"
defaults:
run:
working-directory: .
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Update SDK version in go.mod
working-directory: .
run: |
make dep-version sdk=main
set +e # Grep succeeds with nonzero exit codes to show results.
git status | grep modified
if [ $? -eq 0 ]
then
echo -e "Dependency changes have occurred"
echo "gomodChanged=y" >> $GITHUB_OUTPUT
else
echo -e "No dependency changes since last run"
echo "gomodChanged=n" >> $GITHUB_OUTPUT
fi
set -e
- name: Create Pull Request
if: ${{ steps.updatesdk.outputs.gomodChanged == 'y' }}
id: cpr
uses: peter-evans/create-pull-request@v6
with:
branch: APIGOV-UpdateSDKForTesting
commit-message: 'Update to SDK for testing'
title: 'APIGOV-UpdateSDKForTesting - Update SDK for testing'
delete-branch: true
reviewers: dfeldick
- name: Enable Pull Request Automerge
if: ${{ steps.updatesdk.outputs.gomodChanged == 'y' }}
run: gh pr merge APIGOV-UpdateSDKForTesting --admin --merge --subject "Merge branch APIGOV-UpdateSDKForTesting"
env:
GH_TOKEN: ${{ secrets.ACTION_ACCESS_TOKEN }}