diff --git a/.github/workflows/deploy_version.yaml b/.github/workflows/deploy_version.yaml index 9c364bb..646ff90 100644 --- a/.github/workflows/deploy_version.yaml +++ b/.github/workflows/deploy_version.yaml @@ -12,9 +12,17 @@ jobs: - name: Extract branch name shell: bash - run: echo "BRANCH_NAME=$(echo ${{ github.head_ref }} | sed 's/\//-/g')" >> $GITHUB_ENV + run: | + if [ "${{ github.event.pull_request.head.repo.fork }}" = "true" ]; then + FORK_NAME="${{ github.event.pull_request.head.repo.full_name }}" + BRANCH_NAME="${FORK_NAME}/$(echo ${{ github.head_ref }})" + else + BRANCH_NAME=$(echo ${{ github.head_ref }}) + fi + BRANCH_NAME=$(echo $BRANCH_NAME | sed 's/\//-/g') + echo "BRANCH_NAME=${BRANCH_NAME}" >> $GITHUB_ENV - - name: Debug print branch name + - name: Print branch name shell: bash run: echo "BRANCH_NAME=${{ env.BRANCH_NAME }}" diff --git a/content/about/what_is_ivoa.md b/content/about/what_is_ivoa.md index 8f77812..3a27a10 100644 --- a/content/about/what_is_ivoa.md +++ b/content/about/what_is_ivoa.md @@ -13,6 +13,8 @@ Senior representatives from each national VO project form the [IVOA Executive Co The IVOA holds two Interoperability Workshops each year: a week-long meeting in spring, typically May, and a shorter meeting in fall that is either coordinated with the annual ADASS conference or with a regional VO project meeting. These meetings are opportunities for the [Working Groups and Interest Groups](/members) to have face-to-face discussions and for the more difficult technical questions to be resolved. +Fork test + **Additional Information:** - VO from a user's point of view: [Astronomers](/astronomers)