From 3822e48ee7936808c8c43f5c1abb61a3dff5815d Mon Sep 17 00:00:00 2001 From: "Addisu Z. Taddese" Date: Mon, 27 Nov 2023 14:10:56 -0600 Subject: [PATCH 1/2] Update github action workflows (#238) * Use on `push` only on stable branches to avoid duplicate runs * Update project automation Signed-off-by: Addisu Z. Taddese --- .github/workflows/ci.yml | 12 +++++++++--- .github/workflows/triage.yml | 9 +++------ 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 744bfcff..d0774285 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,12 @@ name: Ubuntu CI -on: [push, pull_request] +on: + pull_request: + push: + branches: + - 'ign-launch[0-9]' + - 'gz-launch[0-9]?' + - 'main' jobs: bionic-ci: @@ -8,7 +14,7 @@ jobs: name: Ubuntu Bionic CI steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Compile and test id: ci uses: ignition-tooling/action-ignition-ci@bionic @@ -19,7 +25,7 @@ jobs: name: Ubuntu Focal CI steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Compile and test id: ci uses: ignition-tooling/action-ignition-ci@focal diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 736670e0..2332244b 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -10,10 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Add ticket to inbox - uses: technote-space/create-project-card-action@v1 + uses: actions/add-to-project@v0.5.0 with: - PROJECT: Core development - COLUMN: Inbox - GITHUB_TOKEN: ${{ secrets.TRIAGE_TOKEN }} - CHECK_ORG_PROJECT: true - + project-url: https://github.com/orgs/gazebosim/projects/7 + github-token: ${{ secrets.TRIAGE_TOKEN }} From 3c40338c0e5048b4b9eb88ee7fbf39b0d708e500 Mon Sep 17 00:00:00 2001 From: "Addisu Z. Taddese" Date: Fri, 5 Jan 2024 19:05:03 -0600 Subject: [PATCH 2/2] Prepare for 2.3.1 release (#240) Signed-off-by: Addisu Z. Taddese --- CMakeLists.txt | 2 +- Changelog.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b287a93..3ae8e621 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.5.1 FATAL_ERROR) #============================================================================ # Initialize the project #============================================================================ -project(ignition-launch2 VERSION 2.3.0) +project(ignition-launch2 VERSION 2.3.1) #============================================================================ # Find ignition-cmake diff --git a/Changelog.md b/Changelog.md index 2d70718b..b554e60e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,15 @@ ## Gazebo Launch 2.x +### Gazebo Launch 2.3.1 (2024-01-05) + +1. Small cleanup fixes + * [Pull request #211](https://github.com/gazebosim/gz-launch/pull/211) + +1. Infrastructure + * [Pull request #238](https://github.com/gazebosim/gz-launch/pull/238) + * [Pull request #213](https://github.com/gazebosim/gz-launch/pull/213) + * [Pull request #212](https://github.com/gazebosim/gz-launch/pull/212) + ### Gazebo Launch 2.3.0 (2022-08-15) 1. Remove redundant namespace references