Skip to content

Commit 37ede3a

Browse files
Merge pull request #7 from Expensify/cole/os-botify
2 parents ab0bb44 + e8a1240 commit 37ede3a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/version.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ on:
1414
jobs:
1515
version:
1616
runs-on: ubuntu-latest
17-
if: ${{ github.actor != 'botify-app[bot]' }} # prevent infinite loop
17+
if: ${{ github.actor != 'os-botify[bot]' }} # prevent infinite loop
1818
steps:
1919
- name: Generate a GitHub App token
2020
id: generateAppToken
2121
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2
2222
with:
23-
app-id: ${{ vars.BOTIFY_APP_CLIENT_ID }}
24-
private-key: ${{ secrets.BOTIFY_APP_PRIVATE_KEY }}
23+
app-id: ${{ vars.OS_BOTIFY_APP_ID }}
24+
private-key: ${{ secrets.OS_BOTIFY_PRIVATE_KEY }}
2525

2626
# This step setups up the git config which is then used later to push the tag.
2727
# Auth for the repo is setup at this step, so we need to pass the bot token
@@ -75,8 +75,8 @@ jobs:
7575
7676
# Set up git user info so we can push a tag
7777
# botify-app[bot] GitHub App ID can be found here: https://api.github.com/users/botify-app[bot]
78-
git config --global user.name "botify-app[bot]"
79-
git config --global user.email "208549588+botify-app[bot]@users.noreply.github.com"
78+
git config --global user.name "os-botify[bot]"
79+
git config --global user.email "140437396+os-botify[bot]@users.noreply.github.com"
8080
8181
# Fetch the commit that was made via the API
8282
git fetch origin main

0 commit comments

Comments
 (0)