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

test: add debug #8

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
16 changes: 15 additions & 1 deletion .github/workflows/license-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,25 @@ on:
types: [created]

jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Log GitHub Event Name
if: github.event_name == 'issue_comment'
run: >
echo "This workflow was triggered by an issue comment. Event: ${{ github.event_name }}"

- name: Log Something Else
if: github.event_name != 'issue_comment'
run: >
echo "This workflow was not triggered by an issue comment. Event: ${{ github.event_name }}"


# Documentation: https://github.com/eclipse-dash/dash-licenses#reusable-github-workflow-for-automatic-license-check-and-ip-team-review-requests
eclipse-dash-license-tool-run:
name: Eclipse Dash License Tool
uses: eclipse-dash/dash-licenses/.github/workflows/mavenLicenseCheck.yml@master
with:
projectId: technology.cbi
secrets:
gitlabAPIToken: ${{ secrets.ECLIPSE_GITLAB_API_TOKEN }} # We should ask Eclipse to add this secret at some point. Currently, we do not want to do automatic license vetting submission.
gitlabAPIToken: ${{ secrets.ECLIPSE_GITLAB_API_TOKEN }} # We should ask Eclipse to add this secret at some point. Currently, we do not want to do automatic license vetting submission.
Loading