Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Detect upstream
Browse files Browse the repository at this point in the history
davide-f committed Dec 21, 2024
1 parent 39a3d55 commit 456475e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ jobs:
contrib-readme-job:
runs-on: ubuntu-latest
name: A job to automate contrib in readme
if: ${{ github.repository_owner }} == 'pypsa-meets-earth'
if: ${{ github.repository_owner == 'pypsa-meets-earth' }}
steps:
# - name: Contribute List
# uses: akhilmhdh/[email protected]
@@ -30,7 +30,7 @@ jobs:
echo "Repository owner: $REPO_OWNER"
echo "Actor: $ACTOR"
if [ "$REPO_OWNER" != "$ACTOR" ]; then
if [ "$REPO_OWNER" == "pypsa-meets-earth" ]; then
echo "This repository is a fork."
echo "fork=true" >> $GITHUB_ENV
else

0 comments on commit 456475e

Please sign in to comment.