secret troubleshooting #4
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: Build and Test Module Updates in Brand Plugins | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- trunk | |
- develop | |
- release/* | |
- feature/* | |
- add/* | |
- update/* | |
- fix/* | |
- try/* | |
pull_request: | |
types: [ opened, reopened, ready_for_review ] | |
workflow_dispatch: | |
workflow_call: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
setup: | |
name: Setup | |
runs-on: ubuntu-latest | |
outputs: | |
branch: ${{ steps.extract_branch.outputs.branch }} | |
steps: | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
id: extract_branch | |
- name: Get org secret for registry | |
shell: bash | |
run: echo "branch=${{ secrets.NEWFOLD_ACCESS_TOKEN }}" >> $GITHUB_OUTPUT | |
id: access_token | |
bluehost: | |
name: Build and Test on Bluehost Plugin | |
needs: setup | |
uses: newfold-labs/action-module-plugin-test/.github/workflows/main.yml@main | |
with: | |
module-repo: ${{ github.repository }} | |
module-branch: ${{ needs.setup.outputs.branch }} | |
plugin-repo: 'bluehost/bluehost-wordpress-plugin' | |
secrets: inherit | |
hostgator: | |
name: Build and Test on HostGator Plugin | |
needs: setup | |
uses: newfold-labs/action-module-plugin-test/.github/workflows/main.yml@main | |
with: | |
module-repo: ${{ github.repository }} | |
module-branch: ${{ needs.setup.outputs.branch }} | |
plugin-repo: 'newfold-labs/wp-plugin-hostgator' | |
secrets: inherit | |
web: | |
name: Build and Test on Web.com Plugin | |
needs: setup | |
uses: newfold-labs/action-module-plugin-test/.github/workflows/main.yml@main | |
with: | |
module-repo: ${{ github.repository }} | |
module-branch: ${{ needs.setup.outputs.branch }} | |
plugin-repo: 'newfold-labs/wp-plugin-web' | |
secrets: inherit | |
crazydomains: | |
name: Build and Test on Crazy Domains Plugin | |
needs: setup | |
uses: newfold-labs/action-module-plugin-test/.github/workflows/main.yml@main | |
with: | |
module-repo: ${{ github.repository }} | |
module-branch: ${{ needs.setup.outputs.branch }} | |
plugin-repo: 'newfold-labs/wp-plugin-crazy-domains' | |
secrets: inherit | |
mojo: | |
name: Build and Test on Mojo Plugin | |
needs: setup | |
uses: newfold-labs/action-module-plugin-test/.github/workflows/main.yml@main | |
with: | |
module-repo: ${{ github.repository }} | |
module-branch: ${{ needs.setup.outputs.branch }} | |
plugin-repo: 'newfold-labs/wp-plugin-mojo' | |
secrets: inherit |