chore(deps): bump actions/setup-python from 4.6.1 to 4.7.1 (#600) #105
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: Workflow Sync | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- "4.5" | |
paths: | |
- ".github/**" | |
workflow_dispatch: | |
jobs: | |
All_Repos_Common_Workflows: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetching Local Repository | |
uses: actions/checkout@v3 | |
- name: Import GPG key | |
id: import_gpg | |
uses: crazy-max/ghaction-import-gpg@v5 | |
with: | |
gpg_private_key: ${{ secrets.MOAUTO_GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.MOAUTO_GPG_PRIVATE_KEY_PASSPHRASE }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Running General Workflow Sync | |
env: | |
REPOSITORIES: | | |
GluuFederation/gluu-passport | |
GluuFederation/casa | |
GluuFederation/oxTrust | |
GluuFederation/oxAuth | |
GluuFederation/scim | |
GluuFederation/fido2 | |
GluuFederation/gluu-opendj4 | |
GluuFederation/oxd | |
GluuFederation/oxshibboleth | |
# GluuFederation/cloud-native-edition | |
# GluuFederation/docker-oxd | |
# GluuFederation/docker-radius | |
# GluuFederation/docker-cr-rotate | |
# GluuFederation/docker-fido2 | |
# GluuFederation/docker-scim | |
# GluuFederation/docker-opendj | |
# GluuFederation/docker-oxshibboleth | |
# GluuFederation/docker-oxauth | |
# GluuFederation/docker-oxtrust | |
# GluuFederation/cluster-mgr | |
# GluuFederation/docker-persistence | |
# GluuFederation/pygluu-containerlib | |
# GluuFederation/docker-config-init | |
# GluuFederation/community-edition-setup | |
# GluuFederation/docker-certmanager | |
# GluuFederation/docker-jackrabbit | |
# GluuFederation/gluu-passport-testing | |
# GluuFederation/openbanking | |
# GluuFederation/community-edition-containers | |
# GluuFederation/guru-app | |
# GluuFederation/docker-upgrade | |
# GluuFederation/gluu-admin-ui-api | |
# GluuFederation/oxtrust-api | |
WORKFLOW_FILES: | | |
.github/workflows/commit-check.yml=.github/workflows/commit-check.yml | |
.github/workflows/central_code_quality_check.yml=.github/workflows/central_code_quality_check.yml | |
GITHUB_TOKEN: ${{ secrets.MOWORKFLOWTOKEN }} | |
GPG_KEY_ID: ${{ steps.import_gpg.outputs.keyid }} | |
PR_BRANCH_NAME: repo_sync | |
run: | | |
echo | |
wget https://raw.githubusercontent.com/mo-auto/scripts/main/org_workflows_sync.sh | |
chmod u+x org_workflows_sync.sh | |
bash org_workflows_sync.sh | |
- name: Running Docker Workflow Sync | |
env: | |
REPOSITORIES: | | |
GluuFederation/docker-oxauth | |
GluuFederation/docker-oxtrust | |
GluuFederation/docker-nginx | |
GluuFederation/docker-config-init | |
GluuFederation/docker-oxshibboleth | |
GluuFederation/docker-opendj | |
GluuFederation/docker-oxPassport | |
GluuFederation/docker-upgrade | |
GluuFederation/docker-cr-rotate | |
GluuFederation/docker-persistence | |
GluuFederation/docker-oxd | |
GluuFederation/docker-casa | |
GluuFederation/docker-certmanager | |
GluuFederation/docker-jackrabbit | |
GluuFederation/docker-fido2 | |
GluuFederation/docker-scim | |
WORKFLOW_FILES: | | |
.github/docker/central_docker_imagescan.yml=.github/workflows/imagescan.yml | |
.github/docker/central_docker_release.yml=.github/workflows/release.yaml | |
.github/docker/central_docker_triggerdevbuild.yml=.github/workflows/triggerdevbuild.yml | |
.github/docker/central_docker_build_image.yml=.github/workflows/build_image.yml | |
GITHUB_TOKEN: ${{ secrets.MOWORKFLOWTOKEN }} | |
GPG_KEY_ID: ${{ steps.import_gpg.outputs.keyid }} | |
PR_BRANCH_NAME: docker_repo_sync | |
run: | | |
echo | |
wget https://raw.githubusercontent.com/mo-auto/scripts/main/org_workflows_sync.sh | |
chmod u+x org_workflows_sync.sh | |
bash org_workflows_sync.sh | |
- name: Running CODEOWNERS Workflow Sync | |
env: | |
GITHUB_TOKEN: ${{ secrets.MOWORKFLOWTOKEN }} | |
GPG_KEY_ID: ${{ steps.import_gpg.outputs.keyid }} | |
PR_BRANCH_NAME: code_owner_repo_sync | |
run: | | |
wget https://raw.githubusercontent.com/mo-auto/scripts/main/org_workflows_sync.sh | |
chmod u+x org_workflows_sync.sh | |
for FILE in .github/GLUUFEDERATION_CODEOWNERS/*_CODEOWNERS; do FILENAME=$(basename -- "$FILE"); repo="${FILENAME%_CODEOWNERS}"; echo "$repo"; export REPOSITORIES="GluuFederation/$repo"; export WORKFLOW_FILES="$FILE=.github/CODEOWNERS"; bash org_workflows_sync.sh; done |