We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 301ecaa commit f98d650Copy full SHA for f98d650
1 file changed
.github/workflows/merge-and-generate-problems.yml
@@ -11,6 +11,13 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
+ - name: Check if the repository is from Live-Coding-Test
15
+ run: |
16
+ if [ "${{ github.repository_owner }}" != "Live-Coding-Test" ]; then
17
+ echo "This workflow is only allowed to run in the main repository (Live-Coding-Test)."
18
+ exit 0
19
+ fi
20
+
21
- name: Checkout Repository
22
uses: actions/checkout@v3
23
0 commit comments