Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

💫 add-new-github-actions #203

Merged
merged 1 commit into from
May 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/issue-to-jira-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Add Issue to Jira Board On Close

on:
issues:
types:
- closed

jobs:
call-workflow-issue-to-jira:
uses: ministryofjustice/cloud-operations-github-actions/.github/workflows/issue-to-jira.yml@main
secrets:
TECH_SERVICES_JIRA_URL: ${{ secrets.TECH_SERVICES_JIRA_URL }}
TECH_SERVICES_JIRA_EMAIL: ${{ secrets.TECH_SERVICES_JIRA_EMAIL }}
TECH_SERVICES_JIRA_TOKEN: ${{ secrets.TECH_SERVICES_JIRA_TOKEN }}
12 changes: 12 additions & 0 deletions .github/workflows/issue-to-project-trigger.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Add issues to project

on:
issues:
types:
- opened

jobs:
call-workflow-issue-to-project:
uses: ministryofjustice/cloud-operations-github-actions/.github/workflows/issue-to-project.yml@main
secrets:
TECH_SERVICES_GITHUB_TOKEN: ${{ secrets.TECH_SERVICES_GITHUB_TOKEN }}