Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Laravel Installer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Clinbio
Packagist
Laravel Installer
Commits
1b783baf
Unverified
Commit
1b783baf
authored
Nov 28, 2021
by
Patrick Organ
Browse files
Options
Downloads
Patches
Plain Diff
add dependabot config & workflow fow updating github action versions
parent
ebe200ec
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/dependabot.yml
+12
-0
12 additions, 0 deletions
.github/dependabot.yml
.github/workflows/dependabot-auto-merge.yml
+32
-0
32 additions, 0 deletions
.github/workflows/dependabot-auto-merge.yml
with
44 additions
and
0 deletions
.github/dependabot.yml
0 → 100644
+
12
−
0
View file @
1b783baf
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version
:
2
updates
:
-
package-ecosystem
:
"
github-actions"
directory
:
"
/"
schedule
:
interval
:
"
weekly"
labels
:
-
"
dependencies"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.github/workflows/dependabot-auto-merge.yml
0 → 100644
+
32
−
0
View file @
1b783baf
name
:
dependabot-auto-merge
on
:
pull_request_target
permissions
:
pull-requests
:
write
contents
:
write
jobs
:
dependabot
:
runs-on
:
ubuntu-latest
if
:
${{ github.actor == 'dependabot[bot]' }}
steps
:
-
name
:
Dependabot metadata
id
:
metadata
uses
:
dependabot/fetch-metadata@v1.1.1
with
:
github-token
:
"
${{
secrets.GITHUB_TOKEN
}}"
-
name
:
Auto-merge Dependabot PRs for semver-minor updates
if
:
${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}}
run
:
gh pr merge --auto --merge "$PR_URL"
env
:
PR_URL
:
${{github.event.pull_request.html_url}}
GITHUB_TOKEN
:
${{secrets.GITHUB_TOKEN}}
-
name
:
Auto-merge Dependabot PRs for semver-patch updates
if
:
${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run
:
gh pr merge --auto --merge "$PR_URL"
env
:
PR_URL
:
${{github.event.pull_request.html_url}}
GITHUB_TOKEN
:
${{secrets.GITHUB_TOKEN}}
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