-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (28 loc) · 725 Bytes
/
action.yml
File metadata and controls
30 lines (28 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
name: Mergify stack auto rebase
description: The action will rebase pull request stacks created by mergify-cli
author: Mergify
branding:
icon: at-sign
color: blue
inputs:
GITHUB_TOKEN:
required: true
description: A personnal access token
outputs:
runs:
using: composite
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python 🔧
uses: actions/setup-python@v5.1.1
with:
python-version: 3.12
- name: Run mergify stack github-action-auto-rebase
env:
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
run: |
python -m pip install mergify-cli
mergify stack github-action-auto-rebase