Skip to content
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
2 changes: 1 addition & 1 deletion .copier-answers.safe-settings.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v2.1.0
_commit: v2.2.0
_src_path: https://github.com/dafyddj/copier-safe-settings
15 changes: 14 additions & 1 deletion .github/workflows/libsafe-settings.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Apply Safe Settings
name: Apply Safe Settings (Library)
on:
workflow_call:
inputs:
Expand Down Expand Up @@ -36,6 +36,19 @@ jobs:
# Path on GHA runner box where safe-settings code downloaded to:
SAFE_SETTINGS_CODE_DIR: .safe-settings-code
steps:
- uses: qoomon/actions--context@e12e182be797e3476990faf801dd1b87f107f91c # v5.0.1
- name: Job information
run: |
msg=""
msg+="APP_ID is: $APP_ID"$'\n'
msg+="PRIVATE_KEY is " && [ -z "$PRIVATE_KEY" ] && msg+="empty"$'\n' || msg+="not empty"$'\n'
msg+="Run environment is: $GITHUB_ENVIRONMENT"
msg=${msg//$'\n'/'%0A'}

echo "::notice::$msg"
env:
APP_ID: ${{ vars.SAFE_SETTINGS_APP_ID }}
PRIVATE_KEY: ${{ secrets.SAFE_SETTINGS_PRIVATE_KEY }}
# Self-checkout to access deployment configuration
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand Down
Loading