Changes due to additional validations in the default config. #6
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: Show Otterdog Configuration | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'otterdog/*.jsonnet' | |
- 'otterdog/*.json' | |
permissions: | |
contents: read | |
jobs: | |
show: | |
# do not run the workflow in the template repo itself | |
if: ${{ !contains (github.repository, '/.eclipsefdn-template') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout OtterDog | |
run: git clone https://gitlab.eclipse.org/eclipsefdn/security/otterdog.git | |
- name: Checkout EclipseFdn/otterdog-configs | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
repository: EclipseFdn/otterdog-configs | |
path: otterdog-configs | |
# checkout the HEAD ref | |
- name: Checkout HEAD | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
path: ${{ github.repository_owner }} | |
- name: Install jsonnet-bundler | |
run: | | |
go install -a github.com/jsonnet-bundler/jsonnet-bundler/cmd/[email protected] | |
echo $(go env GOPATH)/bin >> $GITHUB_PATH | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Setup Python | |
uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0 | |
with: | |
python-version: '3.10' | |
cache: 'poetry' | |
- name: Install dependencies with poetry | |
run: | | |
poetry install --only=main | |
working-directory: otterdog | |
- name: Copy configuration from HEAD ref | |
run: | | |
mkdir -p orgs/${{ github.repository_owner }} | |
cp -r ../${{ github.repository_owner }}/otterdog/* orgs/${{ github.repository_owner }} | |
working-directory: otterdog-configs | |
- name: Show complete Otterdog Configuration | |
run: ../otterdog/otterdog.sh show ${{ github.repository_owner }} -c otterdog.json | tee "$GITHUB_WORKSPACE/config.txt" | |
working-directory: otterdog-configs | |
- name: Upload config.txt | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: Otterdog config | |
path: config.txt |