Skip to content

Commit

Permalink
[TEMP] Add calling workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Sep 17, 2024
1 parent 157de62 commit 1219f14
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Continuous Integration
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
check-freeze-period:
if: github.event_name == 'pull_request'
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/verifyFreezePeriod.yml@master
check-merge-commits:
if: github.event_name == 'pull_request'
uses: eclipse-platform/eclipse.platform.releng.aggregator/.github/workflows/checkMergeCommits.yml@master
check-versions:
if: github.event_name == 'pull_request'
uses: HannesWell/eclipse.platform.releng.aggregator/.github/workflows/checkVersions.yml@master
with:
botName: Eclipse Releng Bot
botMail: [email protected]
12 changes: 12 additions & 0 deletions .github/workflows/version-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Publish Version Check Results

on:
workflow_run:
workflows: [ 'Continuous Integration' ]
types: [ completed ]

jobs:
check:
uses: HannesWell/eclipse.platform.releng.aggregator/.github/workflows/publishVersionCheckResults.yml@master
secrets:
githubBotPAT: ${{ secrets.HANNESWELL_PAT }}

0 comments on commit 1219f14

Please sign in to comment.