Skip to content

Commit a999cc4

Browse files
chore: sync files (#809)
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
1 parent 7336ba4 commit a999cc4

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/sync-files.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ on:
66
workflow_dispatch:
77

88
jobs:
9+
check-secret:
10+
uses: autowarefoundation/autoware-github-actions/.github/workflows/check-secret.yaml@v1
11+
secrets:
12+
secret: ${{ secrets.APP_ID }}
13+
914
sync-files:
15+
needs: check-secret
16+
if: ${{ needs.check-secret.outputs.set == 'true' }}
1017
runs-on: ubuntu-latest
1118
steps:
1219
- name: Generate token

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[flake8]
22
# Modified from https://github.com/ament/ament_lint/blob/ebd524bb9973d5ec1dc48a670ce54f958a5a0243/ament_flake8/ament_flake8/configuration/ament_flake8.ini
33
extend-ignore = B902,C816,D100,D101,D102,D103,D104,D105,D106,D107,D203,D212,D404,I202,CNL100,E203,E501,Q000
4-
import-order-style = google
4+
import-order-style = pep8
55
max-line-length = 100
66
show-source = true
77
statistics = true

0 commit comments

Comments
 (0)