Skip to content
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
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
commit-message:
prefix: ci
include: scope
6 changes: 4 additions & 2 deletions .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ on:
- reopened
- opened

permissions:
pull-requests: write
# Limit token permissions for security
permissions: read-all

jobs:
add-to-project:
uses: seedcase-project/.github/.github/workflows/reusable-add-to-project.yml@main
permissions:
pull-requests: write
with:
app-id: ${{ vars.ADD_TO_BOARD_APP_ID }}
board-number: 18
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/build-website.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Build and deploy website
name: Build website

on:
push:
branches: main
branches:
- main

# Limit token permissions for security
permissions: read-all

jobs:
build-deploy-docs:
build-website:
uses: seedcase-project/.github/.github/workflows/reusable-build-docs.yml@main

secrets:
netlify-token: ${{ secrets.NETLIFY_AUTH_TOKEN }}
17 changes: 17 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Dependency Review Action
#
# This Action will scan dependency manifest files that change as part of a Pull Request,
# surfacing known-vulnerable versions of the packages declared or updated in the PR.
# Once installed, if the workflow run is marked as required,
# PRs introducing known-vulnerable packages will be blocked from merging.
#
# Source repository: https://github.com/actions/dependency-review-action
name: "Security: Dependency Review"
on: pull_request

# Limit token permissions for security
permissions: read-all

jobs:
dependency-review:
uses: seedcase-project/.github/.github/workflows/reusable-dependency-review.yml@main