From 3267e25b77b55e64a08669c332a01a17173a8433 Mon Sep 17 00:00:00 2001 From: Matt Knight Date: Thu, 3 Aug 2023 21:01:28 -0700 Subject: [PATCH] update github actions --- .github/workflows/auto-pr.yml | 46 ----------------------------------- .github/workflows/build.yml | 1 + 2 files changed, 1 insertion(+), 46 deletions(-) delete mode 100644 .github/workflows/auto-pr.yml diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml deleted file mode 100644 index fc80d709..00000000 --- a/.github/workflows/auto-pr.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Downstream Updates -on: - workflow_dispatch: - push: - branches: - - main - -jobs: - update: - runs-on: ubuntu-latest - strategy: - matrix: - repo: [ - hardware-support-template, - espressif-esp, - gigadevice-gd32, - microchip-atmega, - nordic-nrf5x, - nxp-lpc, - raspberrypi-rp2040, - stmicro-stm32, - ] - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - repository: ZigEmbeddedGroup/${{ matrix.repo }} - submodules: recursive - fetch-depth: 0 - - - name: Update - id: update - run: | - cd deps/microzig - git pull origin main - echo "DESCRIPTION=$(git log -1 --pretty=%B | head -n 1)" >> $GITHUB_OUTPUT - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v5.0.1 - with: - token: ${{ secrets.PR_TOKEN }} - branch: downstream/update-microzig - commit-message: update microzig - delete-branch: true - title: Update microzig - body: ${{ steps.update.outputs.DESCRIPTION }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f41ccca4..90decfaa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,7 @@ jobs: strategy: matrix: os: [ + linux-latest, windows-latest, macos-latest, ]