Skip to content

Automated Merging

Automated Merging #12

Workflow file for this run

name: "Automated Merging"
on:
workflow_dispatch:
inputs:
stateId:
description: "State Id"
eventName:
description: "Event Name"
eventPayload:
description: "Event Payload"
settings:
description: "Settings"
authToken:
description: "Auth Token"
ref:
description: "Ref"
jobs:
compute:
name: "Automated Merging"
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "20.10.0"
- name: Install dependencies
run: yarn install --immutable --immutable-cache --check-cache
- run: ${{ toJSON(inputs) }}
shell: cat {0}
- name: Execute directive
uses: ./
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}