mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 07:06:56 +00:00
* chore: update jira teams and add actionlint * update local test to workflow_dispatch * define outputs * try actionlint's skip_outputs setting * move skip_outputs to action definition in tests * move skip_outpus to action.yml * remove skip_outputs * move outputs * call actionlint directly to pass args * try to fix quoting * truncate ignore * try escaping * add comment
17 lines
597 B
YAML
17 lines
597 B
YAML
name: JIRA Sync
|
|
on:
|
|
issues:
|
|
types: [opened, closed, deleted, reopened]
|
|
pull_request_target:
|
|
types: [opened, closed, reopened]
|
|
issue_comment: # Also triggers when commenting on a PR from the conversation view
|
|
types: [created]
|
|
jobs:
|
|
sync:
|
|
uses: hashicorp/vault-workflows-common/.github/workflows/jira.yaml@main
|
|
secrets:
|
|
JIRA_SYNC_BASE_URL: ${{ secrets.JIRA_SYNC_BASE_URL }}
|
|
JIRA_SYNC_USER_EMAIL: ${{ secrets.JIRA_SYNC_USER_EMAIL }}
|
|
JIRA_SYNC_API_TOKEN: ${{ secrets.JIRA_SYNC_API_TOKEN }}
|
|
with:
|
|
teams-array: '["ecosystem", "applications-eco"]'
|