mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-26 01:16:56 +01:00
1ada95e04a
- Convert project to Javascript/Typescript - Allow custom headers to be passed in (optional) - Allow body to be optional
15 lines
250 B
YAML
15 lines
250 B
YAML
name: Automatic Rebase
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
_:
|
|
name: "Automatic Rebase"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: ljharb/rebase@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|