Skip to content

Commit

Permalink
Adds the signoff trailer
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosNihelton committed Oct 4, 2023
1 parent 642c5bf commit 28fca74
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/auto-updates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
branches:
- main
paths-ignore:
- '**/README.md'
- '**/debian/control'
- '**/po/*'
- "**/README.md"
- "**/debian/control"
- "**/po/*"
workflow_dispatch:

jobs:
Expand All @@ -27,7 +27,8 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version-file: common/go.mod
- name: Set up git
- name:
Set up git
# This step needs to be done so that the private repo dependencies can be downloaded
uses: ./.github/actions/setup-git
with:
Expand Down Expand Up @@ -60,6 +61,7 @@ jobs:
body: "[Auto-generated pull request](https://github.com/canonical/ubuntu-pro-for-windows/actions/workflows/auto-updates.yaml) by GitHub Action"
branch: auto-updates/locales
token: ${{ secrets.GITHUB_TOKEN }}
signoff: true
- name: Push branch
if: steps.checkpo.outputs.modified == 'true'
run: |
Expand Down Expand Up @@ -113,6 +115,7 @@ jobs:
body: "[Auto-generated pull request](https://github.com/canonical/ubuntu-pro-for-windows/actions/workflows/auto-updates.yaml) by GitHub Action"
branch: auto-updates/readme-cli-ref
token: ${{ secrets.GITHUB_TOKEN }}
signoff: true
- name: Push branch
if: steps.check-readme.outputs.modified == 'true'
run: |
Expand All @@ -138,7 +141,7 @@ jobs:
go-version-file: go.work
- name: Set up private repo
shell: bash
run : go env -w "GOPRIVATE=github.com/${{ github.repository }}"
run: go env -w "GOPRIVATE=github.com/${{ github.repository }}"
- name: Update submodules
uses: ./.github/actions/update-workspace-dependencies
with:
Expand All @@ -163,6 +166,7 @@ jobs:
body: "[Auto-generated pull request](https://github.com/canonical/ubuntu-pro-for-windows/actions/workflows/auto-updates.yaml) by GitHub Action"
branch: auto-updates/update-internal-dependencies
token: ${{ secrets.GITHUB_TOKEN }}
signoff: true
- name: Push branch
if: steps.check-diff.outputs.modified == 'true'
run: |
Expand Down

0 comments on commit 28fca74

Please sign in to comment.