-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from denis-tingaikin/add-update-deps-job
feat: add update deps job for deployments-k8s
- Loading branch information
Showing
2 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
--- | ||
name: Update dependent repositories | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
update-dependent-repositories: | ||
strategy: | ||
matrix: | ||
repository: | ||
- integration-tests | ||
name: Update ${{ matrix.repository }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup envs | ||
run: | | ||
echo GOPATH=$GITHUB_WORKSPACE >> $GITHUB_ENV | ||
echo GO111MODULE=on >> $GITHUB_ENV | ||
echo $GITHUB_WORKSPACE/bin >> $GITHUB_PATH | ||
- name: Checkout ${{ github.repository }} | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ${{ github.workspace }}/src/github.com/${{ github.repository }} | ||
repository: ${{ github.repository }} | ||
token: ${{ secrets.NSM_BOT_GITHUB_TOKEN }} | ||
- name: Install gotestmd | ||
run: "go get github.com/networkservicemesh/gotestmd" | ||
working-directory: ${{ github.workspace }}/src/github.com/${{ github.repository }} | ||
- name: Install goimports | ||
run: "go get golang.org/x/tools/cmd/goimports" | ||
working-directory: ${{ github.workspace }}/src/github.com/${{ github.repository }} | ||
- name: Find merged PR | ||
uses: jwalton/gh-find-current-pr@v1 | ||
id: findPr | ||
with: | ||
github-token: ${{ github.token }} | ||
- name: Checkout networkservicemesh/${{ matrix.repository }} | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ${{ github.workspace }}/src/github.com/networkservicemesh/${{ matrix.repository }} | ||
repository: networkservicemesh/${{ matrix.repository }} | ||
token: ${{ secrets.NSM_BOT_GITHUB_TOKEN }} | ||
- uses: actions/setup-go@v1 | ||
with: | ||
go-version: 1.15 | ||
- name: Update ${{ github.repository }} locally | ||
working-directory: ${{ github.workspace }}/src/github.com/networkservicemesh/${{ matrix.repository }} | ||
run: | | ||
GOPRIVATE=github.com/networkservicemesh go get -u github.com/${{ github.repository }} | ||
go generate ./... | ||
go mod tidy | ||
git diff | ||
- uses: benjlevesque/short-sha@v1.2 | ||
id: short-sha | ||
with: | ||
length: 8 | ||
- name: Find and Replace version | ||
uses: jacobtomlinson/gha-find-replace@master | ||
with: | ||
find: "s.Version =.*\n" | ||
replace: "$s.Version =${{ steps.short-sha.outputs.sha }}\n" | ||
- name: Push update to the ${{ matrix.repository }} | ||
working-directory: ${{ github.workspace }}/src/github.com/networkservicemesh/${{ matrix.repository }} | ||
run: | | ||
echo Starting to update repositotry ${{ matrix.repository }} | ||
git config --global user.email "nsmbot@networkservicmesh.io" | ||
git config --global user.name "NSMBot" | ||
git add -- . | ||
if ! [ -n "$(git diff --cached --exit-code)" ]; then | ||
echo ${{ matrix.repository }} is up to date | ||
exit 0; | ||
fi | ||
echo "Update go.mod and go.sum to latest version from ${{ github.repository }}@main ${{ github.repository }}#${{ steps.findPr.outputs.pr }}" >> /tmp/commit-message | ||
echo "" >> /tmp/commit-message | ||
echo "${{ github.repository }} PR link: https://github.com/${{ github.repository }}/pull/${{ steps.findPr.outputs.pr }}" >> /tmp/commit-message | ||
echo "" >> /tmp/commit-message | ||
echo "${{ github.repository }} commit message:" >> /tmp/commit-message | ||
git log -1 >> /tmp/commit-message | ||
echo "Commit Message:" | ||
cat /tmp/commit-message | ||
git commit -s -F /tmp/commit-message | ||
git checkout -b update/${{ github.repository }} | ||
git push -f origin update/${{ github.repository }} |