Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
c75cbe65
Unverified
Commit
c75cbe65
authored
10 months ago
by
Aleksandr Lesnenko
Committed by
GitHub
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
use automation user PAT when creating commits in CI workflows (#43250)
parent
35a6544b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/auto-backport.yml
+2
-6
2 additions, 6 deletions
.github/workflows/auto-backport.yml
.github/workflows/loki-update.yml
+5
-10
5 additions, 10 deletions
.github/workflows/loki-update.yml
with
7 additions
and
16 deletions
.github/workflows/auto-backport.yml
+
2
−
6
View file @
c75cbe65
...
...
@@ -11,11 +11,7 @@ jobs:
-
uses
:
actions/checkout@v4
with
:
fetch-depth
:
0
-
uses
:
tibdex/github-app-token@v2.1.0
id
:
generate-token
with
:
app_id
:
${{ secrets.METABASE_BOT_APP_ID }}
private_key
:
${{ secrets.METABASE_BOT_APP_PRIVATE_KEY }}
token
:
${{ secrets.METABASE_AUTOMATION_USER_TOKEN }}
-
uses
:
./.github/actions/find-squashed-commit
name
:
Find commit
id
:
find_commit
...
...
@@ -82,7 +78,7 @@ jobs:
TARGET_BRANCH
:
${{ steps.get_latest_release_branch.outputs.branch-name }}
ORIGINAL_PULL_REQUEST_NUMBER
:
${{ github.event.pull_request.number }}
ORIGINAL_TITLE
:
${{ github.event.pull_request.title }}
GITHUB_TOKEN
:
${{ s
teps.generate-token.outputs.token
}}
GITHUB_TOKEN
:
${{ s
ecrets.METABASE_AUTOMATION_USER_TOKEN
}}
COMMIT
:
${{ steps.find_commit.outputs.commit }}
-
name
:
Auto approve backport PR
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/loki-update.yml
+
5
−
10
View file @
c75cbe65
...
...
@@ -12,6 +12,7 @@ jobs:
-
name
:
Checkout Repository
uses
:
actions/checkout@v3
with
:
token
:
${{ secrets.METABASE_AUTOMATION_USER_TOKEN }}
ref
:
${{ github.head_ref }}
-
name
:
Prepare frontend environment
...
...
@@ -44,25 +45,19 @@ jobs:
-
name
:
Update Loki Snapshots
run
:
yarn test-visual:loki-update
-
uses
:
tibdex/github-app-token@v2.1.0
id
:
generate-token
with
:
app_id
:
${{ secrets.METABASE_BOT_APP_ID }}
private_key
:
${{ secrets.METABASE_BOT_APP_PRIVATE_KEY }}
-
name
:
Commit and Push Changes
run
:
|
git config --global user.name "Metabase
bot
"
git config --global user.email "
metabase-bot
@metabase.com"
git config --global user.name "Metabase
Automation
"
git config --global user.email "
github-automation
@metabase.com"
git add .loki/**
git commit -m "Update Loki Snapshots"
git push
env
:
GITHUB_TOKEN
:
${{ s
teps.generate-token.outputs.token
}}
GITHUB_TOKEN
:
${{ s
ecrets.METABASE_AUTOMATION_USER_TOKEN
}}
-
name
:
Remove 'loki-update' label
uses
:
actions/github-script@v3
with
:
github-token
:
${{secrets.
GITHUB
_TOKEN}}
github-token
:
${{secrets.
METABASE_AUTOMATION_USER
_TOKEN}}
script
:
|
github.issues.removeLabel({
issue_number: context.issue.number,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment