Fix exceptions for parent/child teams #1
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
| # SPDX-FileCopyrightText: 2025 DB Systel GmbH | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Test with real GitHub org | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| selftest: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| GITHUB_APP_ID: ${{ secrets.TEST_GITHUB_APP_ID }} | |
| GITHUB_APP_PRIVATE_KEY: ${{ secrets.TEST_GITHUB_APP_PRIVATE_KEY }} | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - uses: ./.github/actions/poetrybuild | |
| - name: Replace data in config files | |
| run: | | |
| sed -i "s/TEST_GITHUB_ORG/${{ secrets.TEST_GITHUB_ORG }}/g" tests/data/config/org.yaml | |
| - name: Make a test dry-run | |
| run: poetry run gh-org-mgr sync -c tests/data/config/ --dry -vv |