Skip to content

Commit ab58c1b

Browse files
Merge pull request #24 from canonical/refactor/ci
Refactor/ci
2 parents 2e6b7bd + 89654aa commit ab58c1b

File tree

4 files changed

+14
-16
lines changed

4 files changed

+14
-16
lines changed

.github/workflows/keep_alive.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@ on:
55
workflow_dispatch:
66

77
jobs:
8-
keep_alive:
9-
runs-on: ubuntu-latest
10-
steps:
11-
- uses: actions/checkout@v4
12-
with:
13-
# we don't want the dummy commit to appear on a branch we actively use
14-
# the dummy commit are going to be applied to the _keepalive branch
15-
ref: _keepalive
16-
- uses: gautamkrishnar/keepalive-workflow@v1
8+
keep-alive:
9+
uses: canonical/robotics-actions-workflows/.github/workflows/keepalive.yaml@main
10+
with:
11+
workflow_files: "./monthly.yaml"

.github/workflows/monthly.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ on:
66

77
jobs:
88
main-snap:
9-
uses: ubuntu-robotics/snap_configuration/.github/workflows/snap.yaml@main
9+
uses: canonical/snap_configuration/.github/workflows/snap.yaml@main
1010
with:
1111
branch-name: "main"
1212
howto-pull-configuration-snap:
13-
uses: ubuntu-robotics/snap_configuration/.github/workflows/snap.yaml@howto/pull_configuration_from_a_server
13+
uses: canonical/snap_configuration/.github/workflows/snap.yaml@howto/pull_configuration_from_a_server
1414
with:
1515
branch-name: "howto/pull_configuration_from_a_server"
1616
howto-content-configuration-snap:
17-
uses: ubuntu-robotics/snap_configuration/.github/workflows/snap.yaml@howto/content_sharing_configuration_snap
17+
uses: canonical/snap_configuration/.github/workflows/snap.yaml@howto/content_sharing_configuration_snap
1818
howto-overwritable-configuration-snap:
19-
uses: ubuntu-robotics/snap_configuration/.github/workflows/snap.yaml@howto/overwritable_configuration
19+
uses: canonical/snap_configuration/.github/workflows/snap.yaml@howto/overwritable_configuration
2020
with:
2121
branch-name: "howto/overwritable_configuration"

.github/workflows/snap.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ on:
1616

1717
jobs:
1818
main-snap:
19-
uses: ubuntu-robotics/snap_workflows/.github/workflows/snap.yaml@main
19+
uses: canonical/robotics-actions-workflows/.github/workflows/snap.yaml@main
2020
with:
21-
branch-name: ${{ inputs.branch-name == '' && github.ref || inputs.branch-name }}
22-
snap-name: my-ros2-teleop-test
21+
git-ref: ${{ inputs.branch-name == '' && github.ref || inputs.branch-name }}

snap/snapcraft.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: my-ros2-teleop-test
22
base: core22
33
version: '0.1'
44
summary: ROS 2 teleop test snap
5+
license: GPL-3.0
6+
7+
source-code: https://github.com/canonical/snap_configuration/
8+
issues: https://github.com/canonical/snap_configuration/issues
59
description: |
610
ROS 2 teleop test snap getting configured
711

0 commit comments

Comments
 (0)