This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new c990baf96a fix: GHA update-monorepo-lockfiles (#27860)
c990baf96a is described below
commit c990baf96a4e641fcee72c7e0c1a2367af207bae
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Tue Apr 2 20:44:27 2024 -0700
fix: GHA update-monorepo-lockfiles (#27860)
---
.github/workflows/update-monorepo-lockfiles.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.github/workflows/update-monorepo-lockfiles.yml
b/.github/workflows/update-monorepo-lockfiles.yml
index 4281e79d49..b0b63a912e 100644
--- a/.github/workflows/update-monorepo-lockfiles.yml
+++ b/.github/workflows/update-monorepo-lockfiles.yml
@@ -16,6 +16,9 @@ concurrency:
jobs:
update-lock-file:
+ permissions:
+ contents: write
+ pull-requests: write
runs-on: ubuntu-latest
if: >
(github.event_name == 'pull_request' &&
github.event.pull_request.user.login == 'dependabot[bot]') ||
@@ -39,6 +42,8 @@ jobs:
npm install
- name: Commit and Push Changes
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name "GitHub-Actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"