feat(button): matrix with inverted row scan levels (AEGHB-1005) #45
Workflow file for this run
This file contains hidden or 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: Sync approved PRs to internal codebase | |
| on: | |
| pull_request_target: | |
| types: [labeled] | |
| jobs: | |
| sync_prs_to_internal_codebase: | |
| name: GitHub PR to Internal Codebase Sync | |
| runs-on: ubuntu-latest | |
| if: (github.event.label.name == 'PR-Sync-Merge') || | |
| (github.event.label.name == 'PR-Sync-Rebase') || | |
| (github.event.label.name == 'PR-Sync-Update') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Sync approved PRs to internal codebase | |
| uses: espressif/sync-pr-to-gitlab@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GITLAB_URL: ${{ secrets.GITLAB_URL }} | |
| GITLAB_NAMESPACE: ${{ secrets.GITLAB_NAMESPACE }} | |
| GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} | |
| GIT_CONFIG_NAME: ${{ secrets.GIT_CONFIG_NAME }} | |
| GIT_CONFIG_EMAIL: ${{ secrets.GIT_CONFIG_EMAIL }} | |
| JIRA_PROJECT: ${{ secrets.JIRA_PROJECT }} |