Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
thestephenmarshall committed Oct 25, 2023
1 parent 1d2d4ec commit 72cabf7
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 8 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/github-actions-build-number.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Update Build Number
run-name: ${{ github.actor }} is updating the build version 🛠️
on:
pull_request:
types: [ labeled ]
jobs:
Update-Build-Number:
if: github.event.label.name == 'Ready for Testing'
runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: ./PlaybookSwift
env:
# Set an environment variable for the branch name
BRANCH_NAME: ${{ github.head_ref }}
steps:
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Set Git Config
run: |
git config --local user.name "${{ github.actor }}"
git config --local user.email "${{ github.actor }}@users.noreply.github.com"
- name: Get Build Number
run: |
git clone --depth 5 [email protected]:powerhome/nitro-buildnumber.git .
echo $(ls nitro-buildnumber)
"666" >> ./buildNumber.txt
echo $(cat ./buildNumber.txt)
# - name: Leave PR comment
# env:
# PR_NUMBER: ${{ github.event.pull_request.number }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# RUBY_GEM_VERSION: ${{ env.new_ruby_alpha_version }}
# RUBY_GEM_LINK: https://rubygems.org/gems/playbook_ui/versions/${{env.new_ruby_alpha_version}}
# NPM_VERSION: ${{ env.new_npm_alpha_version }}
# NPM_LINK: https://www.npmjs.com/package/playbook-ui/v/${{env.new_npm_alpha_version}}
# run: |
# curl -H "Authorization: token ${GITHUB_TOKEN}" \
# -X POST \
# -d '{"body": "🎉 Congratulations on creating an Alpha Version! \n\n Your Alpha for Ruby Gems is [${{env.RUBY_GEM_VERSION}}](${{env.RUBY_GEM_LINK}}) \n\n Your Alpha for NPM is [${{env.NPM_VERSION}}](${{env.NPM_LINK}}) "}' \
# "https://api.github.com/repos/${{ github.repository }}/issues/${PR_NUMBER}/comments"
10 changes: 3 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,8 @@ def steps = [
runNode {
getReleaseNotes()
def args = "type:${buildType()}"
// prepareToBuild(buildType())
buildAndShipiOS(args)
}
// }, 'macOS': {
// runNode {
// buildAndShipMacOS(args)
// }
}
]
def map = steps
Expand Down Expand Up @@ -332,8 +327,9 @@ def updateBuildNumber() {
// clone repo
dir('.buildnumber') {
try {
sh 'git clone --depth 5 [email protected]:powerhome/nitro-buildnumber.git .'
buildNumber = sh(returnStdout: true, script: './increment PlaybookSwift-version').trim().toInteger()
// sh 'git clone --depth 5 [email protected]:powerhome/nitro-buildnumber.git .'
// buildNumber = sh(returnStdout: true, script: './increment PlaybookSwift-version').trim().toInteger()
buildNumber = 666
print "Build number: ${buildNumber}"
}
finally {
Expand Down
2 changes: 1 addition & 1 deletion Tools/setup-story-details.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if [ -n "$GITHUB_PULL_REQUEST_ID" ]; then

getPullRequestDetails "$GITHUB_PULL_REQUEST_ID" \
| tee "$PR_DETAILS" \
| jq ". | {url, user, id, number, title, state, commits, mergeable}"
| jq ". | {commits, draft, id, mergeable, number, state, title, url, user}"

export PR_USER_HANDLE=`jq -r .user.login "$PR_DETAILS"`
else
Expand Down

0 comments on commit 72cabf7

Please sign in to comment.