Skip to content

Commit 08f7030

Browse files
Merge branch 'auto-rebase' into test2
2 parents ddfb8de + 4fcbe3e commit 08f7030

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

.github/workflows/auto-update.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Auto-update
2+
# Auto-update only listens to `push` events.
3+
# If a pull request is already outdated when enabling auto-merge, manually click on the "Update branch" button a first time to avoid having to wait for another commit to land on the base branch for the pull request to be updated.
4+
on: [push, pull_request]
5+
# If pull requests are always based on the same branches, only triggering the workflow when these branches receive new commits will minimize the workflow execution.
6+
# on:
7+
# push:
8+
# branches:
9+
# - main
10+
11+
jobs:
12+
Auto:
13+
name: Auto-update
14+
runs-on: ubuntu-18.04
15+
steps:
16+
- uses: tibdex/auto-update@v1
17+
with:
18+
github_token: ${{ secrets.GITHUB_TOKEN }}
19+
label: auto-rebase

TEST

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
Hello
1+
Hello World
2+
3+
Yo

0 commit comments

Comments
 (0)