yamlfmt and yamllint changes

pull/388/head
Wyatt Stanke 11 months ago
parent 062ce8773b
commit f281805fcb
No known key found for this signature in database
GPG Key ID: CE6BA5FFF135536D

@ -39,8 +39,3 @@ runs:
source .venv/bin/activate source .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV echo PATH=$PATH >> $GITHUB_ENV
shell: bash shell: bash
# - name: "Install apt dependencies"
# run: |
# sudo apt-get update
# sudo apt-get install -y python3-opencv
# shell: bash

@ -60,9 +60,6 @@ jobs:
# queries: security-extended,security-and-quality # queries: security-extended,security-and-quality
uses: github/codeql-action/autobuild@v3 uses: github/codeql-action/autobuild@v3
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: | # - run: |
# echo "Run, Build Application using script" # echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh # ./location_of_script_within_repo/buildscript.sh
@ -70,6 +67,8 @@ jobs:
# Command-line programs to run using the OS shell. # Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
uses: github/codeql-action/analyze@v3 uses: github/codeql-action/analyze@v3
with: with:
category: "/language:${{matrix.language}}" category: "/language:${{matrix.language}}"

@ -8,7 +8,7 @@ name: Mark stale issues and pull requests
on: on:
schedule: schedule:
# Scheduled to run at 1.30 UTC everyday # Scheduled to run at 1.30 UTC everyday
- cron: '30 1 * * *' - cron: "30 1 * * *"
jobs: jobs:
stale: stale:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -25,25 +25,25 @@ jobs:
close-issue-reason: not_planned close-issue-reason: not_planned
any-of-labels: "status:awaiting user response,status:more data needed" any-of-labels: "status:awaiting user response,status:more data needed"
stale-issue-message: > stale-issue-message: >
Marking this issue as stale since it has been open for 14 days with no activity. This issue will be closed if no further Marking this issue as stale since it has been open for 14 days with no activity. This issue
activity occurs. will be closed if no further activity occurs.
close-issue-message: > close-issue-message: >
This issue was closed because it has been inactive for 28 days. Please post a new issue if you need further assistance. This issue was closed because it has been inactive for 28 days. Please post a new issue if
Thanks! you need further assistance. Thanks!
days-before-pr-stale: 14 days-before-pr-stale: 14
days-before-pr-close: 14 days-before-pr-close: 14
stale-pr-label: "status:stale" stale-pr-label: "status:stale"
stale-pr-message: > stale-pr-message: >
Marking this pull request as stale since it has been open for 14 days with no activity. This PR will be closed if no Marking this pull request as stale since it has been open for 14 days with no activity. This
further activity occurs. PR will be closed if no further activity occurs.
close-pr-message: > close-pr-message: >
This pull request was closed because it has been inactive for 28 days. Please open a new pull request if you need furtherassistance. This pull request was closed because it has been inactive for 28 days. Please open a new
Thanks! pull request if you need furtherassistance. Thanks!
# Label that can be assigned to issues to exclude them from being marked as stale # Label that can be assigned to issues to exclude them from being marked as stale
exempt-issue-labels: 'override-stale' exempt-issue-labels: "override-stale"
# Label that can be assigned to PRs to exclude them from being marked as stale # Label that can be assigned to PRs to exclude them from being marked as stale
exempt-pr-labels: "override-stale" exempt-pr-labels: "override-stale"

@ -15,8 +15,9 @@ jobs:
with: with:
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: > issue-message: >
Hello there, thank you for opening an Issue ! 🙏🏻 The team was notified and they will get back to you asap. Hello there, thank you for opening an Issue ! 🙏🏻 The team was notified and they will get back
to you asap.
pr-message: >
Hello there, thank you for opening an PR ! 🙏🏻 The team was notified and they will get back to you asap.
pr-message: >-
Hello there, thank you for opening an PR ! 🙏🏻 The team was notified and they will get back
to you asap.

@ -1,4 +1,6 @@
---
formatter: formatter:
type: basic type: basic
include_document_start: true include_document_start: true
max_line_length: 127 max_line_length: 100
pad_line_comments: 2

Loading…
Cancel
Save