-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (24 loc) · 899 Bytes
/
action.yml
File metadata and controls
26 lines (24 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: "Create confluence release notes"
description: "Do release note actions in confluence and jira"
inputs:
RELEASE_TAG:
required: false
description: "The tag we are marking as released in jira"
DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE:
required: true
description: "The role to assume to execute the release notes lambda"
runs:
using: "composite"
steps:
- name: connect to dev account
uses: aws-actions/configure-aws-credentials@00943011d9042930efac3dcd3a170e4273319bc8
with:
aws-region: eu-west-2
role-to-assume: ${{ inputs.DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE }}
role-session-name: fhir-validator-lambda-release-notes-run-lambda
- name: call markJiraReleased lambda
shell: bash
working-directory: .github/scripts
env:
RELEASE_TAG: ${{ inputs.RELEASE_TAG }}
run: ./call_mark_jira_released.sh