Skip to content

Commit

Permalink
Test applying label/comment to PR from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mosteo committed Jun 18, 2024
1 parent 419866d commit acf54a0
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build-distros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,8 @@ jobs:
with:
image: ghcr.io/alire-project/docker/gnat:${{matrix.tag}}
command: ${{env.CHECKS_REPO}}/scripts/gh-build-crate.sh
params: -v ${{ github.workspace }}/alire_install/bin/alr:/usr/bin/alr
params: >
-v ${{ github.workspace }}/alire_install/bin/alr:/usr/bin/alr
-e GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
-e GITHUB_EVENT_PATH=${{ github.event_path }}
-e GITHUB_JOB_NAME=${{ github.job.name }}
5 changes: 5 additions & 0 deletions .github/workflows/build-native-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,8 @@ jobs:
- name: Test crate
run: ${{env.CHECKS_REPO}}/scripts/gh-build-crate.sh
shell: bash
env:
GITHUB_EVENT_PATH: ${{ github.event_path }}
GITHUB_JOB_NAME: ${{ github.job.name }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to apply labels/comment
5 changes: 5 additions & 0 deletions .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,8 @@ jobs:
- name: Test crate
run: ${{env.CHECKS_REPO}}/scripts/gh-build-crate.sh
shell: bash
env:
GITHUB_EVENT_PATH: ${{ github.event_path }}
GITHUB_JOB_NAME: ${{ github.job.name }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to apply labels/comment
5 changes: 5 additions & 0 deletions .github/workflows/build-ports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,8 @@ jobs:
- name: Test crate
run: ${{env.CHECKS_REPO}}/scripts/gh-build-crate.sh
shell: bash
env:
GITHUB_EVENT_PATH: ${{ github.event_path }}
GITHUB_JOB_NAME: ${{ github.job.name }}
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to apply labels/comment
2 changes: 1 addition & 1 deletion index/sa/saatana/saatana-2.0.2.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ project-files = ["saatana.gpr"]
tags = ["cryptography", "spark"]

[[depends-on]]
gnat = "^2020"
gnat = "^2020" # This is probably too restrictive?

[origin]
url = "https://github.com/HeisenbugLtd/Saatana/archive/v2.0.2.tar.gz"
Expand Down

0 comments on commit acf54a0

Please sign in to comment.