-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from camptocamp/first-build
First build
- Loading branch information
Showing
22 changed files
with
1,373 additions
and
997 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
skips: | ||
- B101 # Use of assert detected. | ||
- B603 # subprocess call - check for execution of untrusted input. | ||
- B607 # Starting a process with a partial executable path. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
c2cciutils==1.7.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Print repository dispatch event | ||
|
||
on: | ||
repository_dispatch: | ||
types: | ||
- published | ||
inputs: | ||
type: | ||
description: The type of the event | ||
required: true | ||
name: | ||
description: The package name | ||
path: | ||
description: The package path | ||
version: | ||
description: The package version | ||
tag: | ||
description: The package tag | ||
repository: | ||
description: The repository name or URL | ||
version_type: | ||
description: The version type | ||
required: true | ||
|
||
jobs: | ||
print: | ||
runs-on: ubuntu-24.04 | ||
name: Print repository dispatch event | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- name: Print the event | ||
run: | | ||
echo "Event type: ${{ github.event.client_payload.type }}" | ||
echo "Package name: ${{ github.event.client_payload.name }}" | ||
echo "Package path: ${{ github.event.client_payload.path }}" | ||
echo "Package version: ${{ github.event.client_payload.version }}" | ||
echo "Package tag: ${{ github.event.client_payload.tag }}" | ||
echo "Repository: ${{ github.event.client_payload.repository }}" | ||
echo "Version type: ${{ github.event.client_payload.version_type }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM ubuntu | ||
|
||
RUN echo Just for a test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.