20 lines
674 B
YAML
20 lines
674 B
YAML
# Adds metadata and labels to issues based on context
|
|
# https://github.com/airbytehq/workflow-actions/blob/main/src/bin_issue.ts <-- this gets run
|
|
|
|
name: "[safe to merge when failing] Add metadata and labels to issues based on context"
|
|
on:
|
|
issues:
|
|
types: [opened, labeled, unlabeled]
|
|
|
|
jobs:
|
|
shared-issues:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: nick-fields/private-action-loader@v3
|
|
with:
|
|
pal-repo-token: "${{ secrets.OCTAVIA_PAT }}"
|
|
pal-repo-name: airbytehq/workflow-actions@production
|
|
# the following input gets passed to the private action
|
|
token: "${{ secrets.OCTAVIA_PAT }}"
|
|
command: "issue"
|