-
-
Notifications
You must be signed in to change notification settings - Fork 91
auto-approve Dependabot PRs using SSE bot token #1261
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
roshansamantaray
wants to merge
12
commits into
soot-oss:develop
Choose a base branch
from
roshansamantaray:auto-approve-dependabot
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
6d5502e
Added two files deploy-pr-preview.yml and deploy-branch-snapshot.yml …
roshansamantaray c17f98a
Merge remote-tracking branch 'upstream/develop' into develop
roshansamantaray 613e433
Merge branch 'soot-oss:develop' into develop
roshansamantaray 2506241
Added a new job to dependabotifications.yml to auto-approve PRs from …
roshansamantaray 724af40
auto-approve PRs job in dependabotifications.yml now uses reusable wo…
roshansamantaray 5e7a4f8
Added condition to skip auto-approve job if SSE_BOT_PAT is not config…
roshansamantaray d7df806
Changed the branch name from roshansamantaray-patch-1 to develop in d…
roshansamantaray f1cb4f2
Changed the branch name from roshansamantaray-patch-1 to develop in d…
roshansamantaray 6972f0a
Changed paths in GitHub workflows.
roshansamantaray 492ba3a
Changed paths in GitHub workflows to root directory as workflows in s…
roshansamantaray 2910aaa
indentation fix
roshansamantaray 74e1612
Changed the workflow branch to develop
roshansamantaray File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Branch Documentation Snapshot | ||
|
||
permissions: | ||
pages: write | ||
deployments: write | ||
contents: write | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
|
||
paths: | ||
- 'mkdocs.yml' | ||
- 'sootup.examples/**' | ||
- 'docs/**' | ||
- '.github/workflows/deploy-branch-snapshot.yml' | ||
|
||
concurrency: pages | ||
|
||
jobs: | ||
deploy-snapshot: | ||
uses: secure-software-engineering/actions/.github/workflows/pages-branch-snapshot.yml@develop | ||
with: | ||
latest_branch: develop | ||
version: "maven" |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: PR Documentation Preview | ||
|
||
permissions: | ||
pages: write | ||
deployments: write | ||
contents: write | ||
pull-requests: write | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, closed] | ||
paths: | ||
- 'mkdocs.yml' | ||
- 'sootup.examples/**' | ||
- 'docs/**' | ||
- '.github/workflows/deploy-pr-preview.yml' | ||
|
||
concurrency: pages | ||
|
||
jobs: | ||
deploy-preview: | ||
uses: secure-software-engineering/actions/.github/workflows/pages-pr-preview.yml@develop | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. . |
||
with: | ||
enable_comment: true | ||
title_prefix: "SootUp PR Preview: " |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to adapt/shorten the path