Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a dynamic security workflow and a SECURITY.md file #2630

Merged
merged 1 commit into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/dynamic-security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: update-security

on:
push:
paths:
- SECURITY.md
branches:
- main
workflow_dispatch:

jobs:
update-security:
permissions:
contents: write
pull-requests: write
pages: write
uses: thoughtbot/templates/.github/workflows/dynamic-security.yaml@main
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
16 changes: 2 additions & 14 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,2 @@
# Security Policy

## Supported Versions

Only the the latest version of Administrate is supported at a given time. If you find
a security issue with an older version, please try updating to the latest version first.

If for some reason you can't update to the latest version, please let us know your reasons
so that we can have a better understanding of your situation.

## Reporting a Vulnerability

For security inquiries or vulnerability reports, please email security@thoughtbot.com.
If you'd like, you can use our PGP key when reporting vulnerabilities.
<!-- START /templates/security.md -->
<!-- END /templates/security.md -->
Loading