Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fork test #92

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/deploy_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"

Expand Down
2 changes: 2 additions & 0 deletions content/about/what_is_ivoa.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading