Skip to content

fix: git bot user to push changes #219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cea568b
fix: add debug statement
wphyojpl Sep 21, 2023
a4a5ca4
Merge branch 'develop-temp' of github.com:unity-sds/unity-data-servic…
wphyojpl Sep 21, 2023
8d1c193
fix: still finding out how to pass env
wphyojpl Sep 21, 2023
2e00f44
fix: cannot use >> in yaml
wphyojpl Sep 21, 2023
9e42d89
fix: add store version shell script in yml
wphyojpl Sep 21, 2023
6849722
chore: merge from develop
wphyojpl Sep 21, 2023
341aae0
Merge branch 'develop-temp' of github.com:unity-sds/unity-data-servic…
wphyojpl Sep 21, 2023
cfef16c
fix: yaml format error
wphyojpl Sep 21, 2023
1be6e54
Merge branch 'develop-temp' of github.com:unity-sds/unity-data-servic…
wphyojpl Sep 21, 2023
303687f
fix: yaml error again
wphyojpl Sep 21, 2023
a9fa932
Merge branch 'develop-temp' of github.com:unity-sds/unity-data-servic…
wphyojpl Sep 21, 2023
185a549
fix: yaml err ???
wphyojpl Sep 21, 2023
0c82392
should not build now. only during merge
wphyojpl Sep 21, 2023
77cc787
fix: so puzzling
wphyojpl Sep 21, 2023
3e7f3be
fix: removing comments to see if that is the cause
wphyojpl Sep 21, 2023
a5f2b0e
fix: re-adding commented files
wphyojpl Sep 21, 2023
cd63cd0
Merge branch 'develop-temp' of github.com:unity-sds/unity-data-servic…
wphyojpl Sep 21, 2023
2c5c8e7
fix: env bug now
wphyojpl Sep 21, 2023
8155c84
Merge branch 'develop-temp' of github.com:unity-sds/unity-data-servic…
wphyojpl Sep 21, 2023
1d5e266
fix: script to merge the version update
wphyojpl Sep 21, 2023
3649ac2
Merge branch 'develop-temp' of github.com:unity-sds/unity-data-servic…
wphyojpl Sep 21, 2023
ee54fa3
fix: add git bot username to avoid password
wphyojpl Sep 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: cannot use >> in yaml
  • Loading branch information
wphyojpl committed Sep 21, 2023
commit 2e00f44caed3b639f0d59ba65f95b1863a8eb4d0
2 changes: 0 additions & 2 deletions .github/workflows/pr_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ jobs:
python-version: '3.9'
- run: |
artifact_file_name="${{ env.ARTIFACT_BASE_NAME }}-${{ env.software_version }}.zip"
echo "PR_NUMBER1=${github.event.number}" >> ${GITHUB_ENV}
echo "PR_TITLE1=${github.event.pull_request.title}" >> ${GITHUB_ENV}
# PR_NUMBER="${{ github.event.number }}"
# PR_TITLE="${{ github.event.pull_request.title }}"
echo "${PR_TITLE} -- ${PR_NUMBER}"
Expand Down
4 changes: 3 additions & 1 deletion ci.cd/store_version.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env bash
software_version=`python3 ${GITHUB_WORKSPACE}/setup.py --version`
echo $software_version
echo "software_version=${software_version}" >> ${GITHUB_ENV}
echo "software_version=${software_version}" >> ${GITHUB_ENV}
echo "PR_NUMBER1=${github.event.number}" >> ${GITHUB_ENV}
echo "PR_TITLE1=${github.event.pull_request.title}" >> ${GITHUB_ENV}