forked from shenzhencenter/google-ads-pb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Damien Goehrig
committed
Dec 8, 2023
1 parent
eae31c6
commit 05bba3e
Showing
2 changed files
with
25 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
version: | ||
description: "version" | ||
required: true | ||
default: "v14" | ||
default: "v15" | ||
|
||
jobs: | ||
build: | ||
|
@@ -15,7 +15,7 @@ jobs: | |
image: alpine:latest | ||
env: | ||
VERSION: ${{ github.event.inputs.version }} | ||
PUBLISH_PKG: github.com/shenzhencenter/google-ads-pb | ||
PUBLISH_PKG: github.com/Optable/google-ads-pb | ||
INPUT_PATH: /googleapis | ||
OUTPUT_PATH: ~/go/src/google-ads-pb | ||
ADSLIB_PATH: /googleapis/google/ads/googleads/${{ github.event.inputs.version }} | ||
|
@@ -34,7 +34,7 @@ jobs: | |
- name: Clone repositories | ||
run: | | ||
git clone --branch=develop https://$GITHUB_ACTOR_ID:${{ secrets.GITHUB_TOKEN }}@github.com/shenzhencenter/google-ads-pb.git $OUTPUT_PATH | ||
git clone --branch=develop https://$GITHUB_ACTOR_ID:${{ secrets.GITHUB_TOKEN }}@github.com/Optable/google-ads-pb.git $OUTPUT_PATH | ||
git clone --depth=1 --branch=master https://github.com/googleapis/googleapis.git $INPUT_PATH | ||
if [ ! -d $INPUT_PATH/google/protobuf ]; then | ||
git clone --depth=1 --branch=main https://github.com/protocolbuffers/protobuf.git /protobuf | ||
|
@@ -77,7 +77,7 @@ jobs: | |
run: | | ||
cd $OUTPUT_PATH | ||
if [ ! -f go.mod ]; then | ||
go mod init github.com/shenzhencenter/google-ads-pb | ||
go mod init github.com/Optable/google-ads-pb | ||
fi | ||
go mod tidy | ||
go fmt ./... | ||
|
@@ -87,11 +87,25 @@ jobs: | |
run: | | ||
cd $OUTPUT_PATH | ||
if [ -z "$(git status --porcelain)" ]; then | ||
echo "==> No changes" | ||
echo "==> No changes to commit" | ||
exit 0 | ||
fi | ||
git add . | ||
git config user.email "[email protected]" | ||
git config user.name "GitHub Action" | ||
git commit -m "feat: updated by action, $(date)" | ||
git push origin develop | ||
echo "==> Committing changes" | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "<>" | ||
git add . | ||
git commit -m "Auto-generated client update for version $VERSION" | ||
git push origin HEAD:develop | ||
echo "==> Changes have been pushed" | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "Auto-generated client update for version $VERSION" | ||
title: "Auto-generated client update for version $VERSION" | ||
body: "This PR updates the google ads proto & client to version $VERSION" | ||
head: "develop" | ||
base: "main" |
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