Skip to content

Commit

Permalink
build: upload DEPENDENCIES to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Oct 14, 2024
1 parent 6a2a2e2 commit 5c114b5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 376 deletions.
36 changes: 4 additions & 32 deletions .github/workflows/scan-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,7 @@ concurrency:
cancel-in-progress: true

jobs:
check-pull-request-title:
runs-on: ubuntu-latest
continue-on-error: false
steps:
- uses: actions/checkout@v4
- uses: deepakputhraya/action-pr-title@master
with:
# Match pull request titles conventional commit syntax (https://www.conventionalcommits.org/en/v1.0.0/)
# (online tool for regex quick check: https://regex101.com/r/V5J8kh/1)
#
# Valid examples would be
# - fix: resolve minor issue
# - docs(Sample5): update docs for configuration
# - feat(management-api)!: change path to access contract agreements
#
# Invalid examples would be
# - Add cool feature
# - Feature/some cool improvement
# - fix: resolve minor issue.
regex: '^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(\w+((,|\/|\\)?\s?\w+)+\))?!?: [\S ]{1,80}[^\.]$'
allowed_prefixes: 'build,chore,ci,docs,feat,fix,perf,refactor,revert,style,test'
prefix_case_sensitive: true

check-for-assigned-labels:
runs-on: ubuntu-latest
continue-on-error: false
steps:
- uses: actions/checkout@v4
- uses: agilepathway/[email protected]
with:
any_of: api,bug,build,dependencies,documentation,enhancement,no-changelog,refactoring
repo_token: ${{ secrets.GITHUB_TOKEN }}
trigger-workflow:
uses: eclipse-edc/.github/.github/workflows/scan-pull-request.yml@main
secrets:
envGH: ${{ secrets.GITHUB_TOKEN }}
7 changes: 6 additions & 1 deletion .github/workflows/trigger_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:

jobs:
Publish-Snapshot:
# This workflow will abort if the required secrets don't exist
uses: eclipse-edc/.github/.github/workflows/publish-snapshot.yml@main
secrets: inherit

Publish-Dependencies:
permissions:
contents: write
uses: eclipse-edc/.github/.github/workflows/publish-dependencies.yml@main
secrets: inherit
4 changes: 0 additions & 4 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ jobs:
- name: Run Checkstyle
run: ./gradlew checkstyleMain checkstyleTest

Dependency-Check:
uses: eclipse-edc/.github/.github/workflows/dependency-check.yml@main
secrets: inherit

Unit-Tests:
runs-on: ubuntu-latest
steps:
Expand Down
Loading

0 comments on commit 5c114b5

Please sign in to comment.