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

[NOT TO BE MERGED]fork test: dump github context #404

Closed
wants to merge 3 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
8 changes: 8 additions & 0 deletions .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ jobs:
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
dump-github:
name: Dump Github context
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
merge:
runs-on: ubuntu-latest
needs:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/license-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,18 @@ on:
- '*'

jobs:
dump-github:
name: Dump Github context
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"

fossa-scan:
name: Find license compliance and security issues
if: github.repository == 'Kuadrant/limitador'
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ on:
- cron: '5 4 * * *'

jobs:
dump-github:
name: Dump Github context
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
check:
name: Check
runs-on: ubuntu-latest
Expand Down
Loading