Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos.buildout
Commits
5fcd34bd
Commit
5fcd34bd
authored
Sep 30, 2022
by
Maurits van Rees
Committed by
GitHub
Sep 30, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #619 from buildout/maurits-no-double-gh-actions-master
Prevent running gh-actions twice for push/pull.
parents
b5fc31fd
343519a7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
4 deletions
+24
-4
.github/workflows/centos.yml
.github/workflows/centos.yml
+6
-1
.github/workflows/debian-sys.yml
.github/workflows/debian-sys.yml
+6
-1
.github/workflows/debian.yml
.github/workflows/debian.yml
+6
-1
.github/workflows/python-runners.yml
.github/workflows/python-runners.yml
+6
-1
No files found.
.github/workflows/centos.yml
View file @
5fcd34bd
name
:
Centos containers
name
:
Centos containers
on
:
[
push
,
pull_request
]
on
:
push
:
pull_request
:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch
:
jobs
:
jobs
:
build
:
build
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
if
:
github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy
:
strategy
:
fail-fast
:
false
fail-fast
:
false
matrix
:
matrix
:
...
...
.github/workflows/debian-sys.yml
View file @
5fcd34bd
name
:
Debian container with system Python
name
:
Debian container with system Python
on
:
[
push
,
pull_request
]
on
:
push
:
pull_request
:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch
:
jobs
:
jobs
:
build
:
build
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
if
:
github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy
:
strategy
:
fail-fast
:
false
fail-fast
:
false
matrix
:
matrix
:
...
...
.github/workflows/debian.yml
View file @
5fcd34bd
name
:
Debian containers
name
:
Debian containers
on
:
[
push
,
pull_request
]
on
:
push
:
pull_request
:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch
:
jobs
:
jobs
:
build
:
build
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
if
:
github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy
:
strategy
:
fail-fast
:
false
fail-fast
:
false
matrix
:
matrix
:
...
...
.github/workflows/python-runners.yml
View file @
5fcd34bd
name
:
Ubuntu, MacOS, Windows machines
name
:
Ubuntu, MacOS, Windows machines
on
:
[
push
,
pull_request
]
on
:
push
:
pull_request
:
# Allow to run this workflow manually from the Actions tab
workflow_dispatch
:
jobs
:
jobs
:
build
:
build
:
runs-on
:
${{ matrix.os }}
runs-on
:
${{ matrix.os }}
if
:
github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
strategy
:
strategy
:
fail-fast
:
false
fail-fast
:
false
matrix
:
matrix
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment