From 418954a939cbf0594c09a754bbb31989a89203fd Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 29 Jun 2020 18:07:56 -0400 Subject: [PATCH] Create github action to assign RUSTSEC ids (#311) * Create github action to assign RUSTSEC ids * Bump --- .github/workflows/assign-ids.yml | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/assign-ids.yml diff --git a/.github/workflows/assign-ids.yml b/.github/workflows/assign-ids.yml new file mode 100644 index 0000000..75c04e4 --- /dev/null +++ b/.github/workflows/assign-ids.yml @@ -0,0 +1,34 @@ +name: Assign IDs + +on: + push: + branches: master + +jobs: + assign-ids: + name: Assign IDs + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + + - name: Cache cargo bin + uses: actions/cache@v1 + with: + path: ~/.cargo/bin + key: rustsec-admin-v0.2.0 + + - name: Install rustsec-admin + run: | + if [ ! -f $HOME/.cargo/bin/rustsec-admin ]; then + cargo install rustsec-admin + fi + - name: Assign IDs + run: rustsec-admin assign-id + - name: Create pull request + uses: peter-evans/create-pull-request@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: Assign RUSTSEC IDs + title: Assign RUSTSEC IDs + branch: assign-ids +