Skip to content

Commit

Permalink
Merge pull request #162 from praptisharma28/workflow
Browse files Browse the repository at this point in the history
feat: workflow added
  • Loading branch information
Kritika30032002 authored Feb 1, 2024
2 parents a28d4a1 + ef842f6 commit b595b87
Show file tree
Hide file tree
Showing 4 changed files with 132 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/ISSUE_TEMPLATE/other.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Other 🤔
description: Use this for any other issues. PLEASE do not create blank issues
title: "[Other]"
body:
- type: markdown
attributes:
value: "# Other issue"

- type: textarea
id: issuedescription
attributes:
label: What would you like to share?
description: Provide a clear and concise explanation of your issue.
validations:
required: true

- type: textarea
id: extrainfo
attributes:
label: Additional information
description: Is there anything else we should know about this issue?
validations:
required: false

- type: checkboxes
id: no-duplicate-issues
attributes:
label: "Checklist"
options:
- label: "I have checked the existing issues."
required: true

- label: "I follow [Contributing Guidelines](https://github.com/Kritika30032002/Top_Secrets/blob/main/contributing.md) of this project."
required: true

- label: "I am a IWOC'24 contributor."
required: false

- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our "[Code of Conduct](https://github.com/Kritika30032002/Top_Secrets/blob/main/code_of_conduct.md)"
options:
- label: I agree to follow this project's "[Code of Conduct](https://github.com/Kritika30032002/Top_Secrets/blob/main/code_of_conduct.md)".
required: true
25 changes: 25 additions & 0 deletions .github/pr-title-checker.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"LABEL": {
"name": "title needs formatting",
"color": "F9D0C4"
},
"CHECKS": {
"prefixes": [
"build: ",
"chore: ",
"docs: ",
"feat: ",
"fix: ",
"perf: ",
"refactor: ",
"revert: ",
"style: ",
"test: "
]
},
"MESSAGES": {
"success": "Everything is great. Status: 200",
"failure": "PR title does not conform to the required format. Please use one of the specified prefixes followed by a colon and a space. Status: 400",
"notice": ""
}
}
42 changes: 42 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: 'CodeQL'

on:
push:
branches: ['main']
pull_request:
branches: ['main']
schedule:
- cron: '19 19 * * 0'

jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'javascript' && 'ubuntu-latest') || 'windows-latest' }}
timeout-minutes: ${{ (matrix.language == 'javascript' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: ['javascript']

steps:
- name: Checkout repository
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: '/language:${{matrix.language}}'
19 changes: 19 additions & 0 deletions .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'PR Title Checker'
on:
pull_request_target:
types:
- opened
- edited
- synchronize
- labeled
- unlabeled

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: thehanimo/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
pass_on_octokit_error: false
configuration_path: '.github/pr-title-checker.json'

0 comments on commit b595b87

Please sign in to comment.