add option to use custom secret instead of creating one with ssm[CDS-549] #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changelog | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: [master] | |
paths: | |
- "src/**" | |
jobs: | |
get-label: | |
runs-on: ubuntu-latest | |
name: get label | |
outputs: | |
labels: "${{ steps.pr-labels.outputs.labels }}" | |
steps: | |
- name: Get PR labels | |
id: pr-labels | |
uses: joerick/[email protected] | |
check-changelog-updates: | |
if: "${{ needs.get-label.outputs.labels != ' skip-changelog ' }}" | |
runs-on: ubuntu-latest | |
needs: get-label | |
name: Check changelog update | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v37 | |
- name: Check changelog file | |
run: | | |
changed_files_string="${{ steps.changed-files.outputs.all_changed_files }}" | |
read -ra changed_files_array <<< "$changed_files_string" | |
chmod +x scripts/changelog_check.sh | |
for changed_file in "${changed_files_array[@]}"; do | |
if [[ "$changed_file" == *"/template."* ]]; then | |
scripts/changelog_check.sh $(dirname $changed_file) | |
fi | |
done |