Bump actions/checkout from 4.2.0 to 4.2.1 (#82) #122
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
# Copyright Broadcom, Inc. All Rights Reserved. | |
# SPDX-License-Identifier: APACHE-2.0 | |
name: Sync Workflow Files | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 | |
- name: Run GitHub File Sync | |
uses: BetaHuhn/repo-file-sync-action@8b92be3375cf1d1b0cd579af488a9255572e4619 | |
with: | |
# This token requires workflows permissions. | |
GH_PAT: ${{ secrets.BITNAMI_BOT_SUPPORT_TOKEN }} | |
PR_LABELS: support | |
GIT_USERNAME: bitnami-bot | |
GIT_EMAIL: [email protected] | |
COMMIT_BODY: "\n\nSigned-off-by: bitnami-bot <[email protected]>" |