From 3d755f0982153ce66c5db437cabbf73b83ce039a Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Mon, 23 Aug 2021 17:37:12 -0700 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=91=A9=E2=80=8D=F0=9F=8C=BE=20Remove?= =?UTF-8?q?=20bitbucket-pipelines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Louise Poubel --- bitbucket-pipelines.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index d363ade5c..000000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,34 +0,0 @@ -image: ubuntu:bionic - -pipelines: - default: - - step: - script: - # Dependencies - - apt update - - apt -y install cmake build-essential lcov curl git lsb-release wget - libtinyxml-dev libxml2-utils ruby-dev libboost-dev - python-psutil - - sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-latest.list' - - wget http://packages.osrfoundation.org/gazebo.key -O - | apt-key add - - - apt update - - apt install -y - libignition-math4-dev - libignition-tools-dev - # SDFormat - - mkdir build - - cd build - - cmake .. -DCMAKE_BUILD_TYPE=coverage - - make -j4 - - make test - - make coverage - - bash <(curl -s https://codecov.io/bash) - - make install - # Examples - - cd .. - - cd examples - - mkdir build - - cd build - - cmake .. - - make -j4 - - ./simple ../simple.sdf From 09920326386de11b3e80f71380785b95a259765e Mon Sep 17 00:00:00 2001 From: Louise Poubel Date: Mon, 23 Aug 2021 18:48:18 -0700 Subject: [PATCH 2/2] backport labeler and triageer Signed-off-by: Louise Poubel --- .github/workflows/pr-collection-labeler.yml | 13 +++++++++++++ .github/workflows/triage.yml | 19 +++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 .github/workflows/pr-collection-labeler.yml create mode 100644 .github/workflows/triage.yml diff --git a/.github/workflows/pr-collection-labeler.yml b/.github/workflows/pr-collection-labeler.yml new file mode 100644 index 000000000..7d7b4e179 --- /dev/null +++ b/.github/workflows/pr-collection-labeler.yml @@ -0,0 +1,13 @@ +name: PR Collection Labeler + +on: pull_request_target + +jobs: + pr_collection_labeler: + runs-on: ubuntu-latest + steps: + - name: Add collection labels + if: github.event.action == 'opened' + uses: ignition-tooling/pr-collection-labeler@v1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml new file mode 100644 index 000000000..736670e0e --- /dev/null +++ b/.github/workflows/triage.yml @@ -0,0 +1,19 @@ +on: + issues: + types: [opened] + pull_request_target: + types: [opened] +name: Ticket opened +jobs: + assign: + name: Add ticket to inbox + runs-on: ubuntu-latest + steps: + - name: Add ticket to inbox + uses: technote-space/create-project-card-action@v1 + with: + PROJECT: Core development + COLUMN: Inbox + GITHUB_TOKEN: ${{ secrets.TRIAGE_TOKEN }} + CHECK_ORG_PROJECT: true +