Skip to content

Commit

Permalink
Fixing yaml formating.
Browse files Browse the repository at this point in the history
Signed-off-by: Chad Metcalf <metcalfc@gmail.com>
  • Loading branch information
metcalfc committed Mar 20, 2021
1 parent ae42cbb commit ca6b283
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
@@ -1,4 +1,4 @@
name: "Code Scanning - Action"
name: 'Code Scanning - Action'

on:
pull_request:
Expand Down Expand Up @@ -26,10 +26,10 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1

# Override language selection by uncommenting this and choosing your languages
# with:
# languages: go, javascript, csharp, python, cpp, java

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below).
- name: Autobuild
Expand Down
29 changes: 14 additions & 15 deletions .github/workflows/stale.yml
Expand Up @@ -2,24 +2,23 @@ name: Mark stale issues and pull requests

on:
schedule:
- cron: "30 1 * * *"
- cron: '30 1 * * *'

jobs:
stale:

runs-on: ubuntu-latest

steps:
- name: Close Stale Issues
uses: actions/stale@v3.0.14
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has not had any activity in 30 days. Marking it stale. It will be closed in 14 days.'
stale-pr-message: 'This PR has not had any activity in 30 days. Marking it stale. It will be closed in 14 days.'
close-issue-message: 'This issue has not had any activity in 44 days. Closing it.'
close-pr-message: 'This PR has not had any activity in 44 days. Closing it.'
days-before-stale: 30
days-before-close: 14
stale-issue-label: 'stale-issue'
stale-pr-label: 'stale-pr'
remove-stale-when-updated: true
- name: Close Stale Issues
uses: actions/stale@v3.0.14
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has not had any activity in 30 days. Marking it stale. It will be closed in 14 days.'
stale-pr-message: 'This PR has not had any activity in 30 days. Marking it stale. It will be closed in 14 days.'
close-issue-message: 'This issue has not had any activity in 44 days. Closing it.'
close-pr-message: 'This PR has not had any activity in 44 days. Closing it.'
days-before-stale: 30
days-before-close: 14
stale-issue-label: 'stale-issue'
stale-pr-label: 'stale-pr'
remove-stale-when-updated: true

0 comments on commit ca6b283

Please sign in to comment.