Skip to content

Commit

Permalink
Repo hygiene (#510)
Browse files Browse the repository at this point in the history
* Repo hygiene

* Removing js since we're not adding anything custom

* removing unused placeholders

* Adding name to job

---------

Co-authored-by: Sree P <[email protected]>
  • Loading branch information
nsiwnf and nsiwnf authored Mar 9, 2024
1 parent 4bff2b0 commit cbad2cc
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 10 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "daily"
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:
# The branches below must be a subset of the branches above
branches:
- main

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

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

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
queries: security-extended,security-and-quality
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
2 changes: 2 additions & 0 deletions .github/workflows/issue-auto-unassign.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Auto-unassign issue

on:
schedule:
# * is a special character in YAML so you have to quote this string
Expand Down
10 changes: 0 additions & 10 deletions config/application.example.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
# Add configuration values here, as shown below.
#
# pusher_app_id: "2954"
# pusher_key: 7381a978f7dd7f9a1117
# pusher_secret: abdc3b896a0ffb85d373
# stripe_api_key: sk_test_2J0l093xOyW72XUYJHE4Dv2r
# stripe_publishable_key: pk_test_ro9jV5SNwGb1yYlQfzG17LHK
#
# production:
# stripe_api_key: sk_live_EeHnL644i6zo4Iyq4v1KdV9H
# stripe_publishable_key: pk_live_9lcthxpSIHbGwmdO941O1XVU

DATABASE_USERNAME: REPLACE_ME
DATABASE_PASSWORD: REPLACE_ME
Expand Down

0 comments on commit cbad2cc

Please sign in to comment.