diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..27e5d4e1a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 000000000..8be41b94e --- /dev/null +++ b/.github/workflows/codeql.yml @@ -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 diff --git a/.github/workflows/issue-auto-unassign.yml b/.github/workflows/issue-auto-unassign.yml index f4ede3131..f7f96b22c 100644 --- a/.github/workflows/issue-auto-unassign.yml +++ b/.github/workflows/issue-auto-unassign.yml @@ -1,3 +1,5 @@ +name: Auto-unassign issue + on: schedule: # * is a special character in YAML so you have to quote this string diff --git a/config/application.example.yml b/config/application.example.yml index cc76ea39a..d21c22170 100644 --- a/config/application.example.yml +++ b/config/application.example.yml @@ -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