Skip to content

Commit 057f371

Browse files
authored
fix: Broadcast workflow inputs update (#52)
* fix: inputs aligned with reusable workflow * fix: linter shellcheck issue fix
1 parent 8f96aa2 commit 057f371

2 files changed

Lines changed: 6 additions & 13 deletions

File tree

.github/workflows/broadcast-files.yaml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ on:
2121
Target repository name.
2222
If not provided, the action will be triggered for all repositories in the organization.
2323
required: false
24+
type: string
2425
replicate-common-workflows:
2526
description: 'Replicate common workflows'
2627
required: false
@@ -31,21 +32,11 @@ on:
3132
required: false
3233
default: true
3334
type: boolean
34-
replicate-common-config-files:
35-
description: 'Replicate common config files'
36-
required: false
37-
default: true
38-
type: boolean
3935
replicate-cloud-core-dependabot:
4036
description: 'Replicate dependabot config file for Cloud-Core repos'
4137
required: false
4238
default: true
4339
type: boolean
44-
replicate-superlinter-configs:
45-
description: 'Replicate superlinter config file'
46-
required: false
47-
default: true
48-
type: boolean
4940
permissions:
5041
actions: write
5142
contents: read

workflow-templates/automatic-pr-labeler.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
- name: "Drop warning if PR from fork"
3939
if: ${{ github.event.pull_request.base.repo.id != github.event.pull_request.head.repo.id }}
4040
run: |
41-
echo "⚠️ Pull request from fork! ⚠️" >> $GITHUB_STEP_SUMMARY
42-
echo "Labels will not be applied to PR. Assign them manually please." >> $GITHUB_STEP_SUMMARY
43-
echo "Labels to assign: ${{ steps.action-assign-labels.outputs.labels-next }}" >> $GITHUB_STEP_SUMMARY
41+
{
42+
echo "⚠️ Pull request from fork! ⚠️";
43+
echo "Labels will not be applied to PR. Assign them manually please.";
44+
echo "Labels to assign: ${{ steps.action-assign-labels.outputs.labels-next }}";
45+
} >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)