Skip to content

Commit

Permalink
Exchange workflows for those from pyiron_module_contrib using pyiron/…
Browse files Browse the repository at this point in the history
…actions
  • Loading branch information
liamhuber committed May 8, 2023
1 parent b6a1fb3 commit 26d33c6
Show file tree
Hide file tree
Showing 14 changed files with 83 additions and 241 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/UpdateDependabotPR.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/coverage.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This runs cron jobs daily

name: Daily

on:
schedule:
- cron: '0 23 * * *'

jobs:
codeql:
uses: pyiron/actions/.github/workflows/tests-and-coverage.yml@main
secrets: inherit
10 changes: 10 additions & 0 deletions .github/workflows/dependabot-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: UpdateDependabotPR

on:
pull_request_target:
branches: [ main ]

jobs:
pyiron:
uses: pyiron/actions/.github/workflows/dependabot-pr.yml@main
secrets: inherit
32 changes: 0 additions & 32 deletions .github/workflows/deploy.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/docs.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/notebooks.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/pr-labeled.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This runs jobs which pyiron modules should run when a PR is labeled

name: PR labeled

on:
pull_request:
types: [labeled]

jobs:
pyiron:
uses: pyiron/actions/.github/workflows/pr-labeled.yml@main
secrets: inherit
12 changes: 12 additions & 0 deletions .github/workflows/pr-target-opened.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This runs jobs which pyiron modules should run when a PR target is opened

name: PR opened

on:
pull_request_target:
types: [opened]

jobs:
pyiron:
uses: pyiron/actions/.github/workflows/pr-target-opened.yml@main
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/push-pull-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This runs jobs which pyiron modules should run on pushes or PRs to main

name: Push-Pull-main

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
pyiron:
uses: pyiron/actions/.github/workflows/push-pull-main.yml@main
secrets: inherit
27 changes: 0 additions & 27 deletions .github/workflows/pypicheck.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This runs jobs which pyiron modules should run on release
name: Release

on:
release:
types: [ published ]

jobs:
pyiron:
uses: pyiron/actions/.github/workflows/release.yml@main
secrets: inherit
48 changes: 0 additions & 48 deletions .github/workflows/unittests.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This runs cron jobs weekly

name: Weekly

on:
schedule:
- cron: '0 23 * * 2'

jobs:
codeql:
uses: pyiron/actions/.github/workflows/codeql.yml@main
secrets: inherit

0 comments on commit 26d33c6

Please sign in to comment.