-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore: fill or remove RSR template placeholders #64
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
Changes from all commits
40ca49e
1326b86
8a5cdf0
b678efa
a05ff5e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ on: | |
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| actions: read | ||
| contents: read | ||
|
|
||
| jobs: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,6 +11,7 @@ on: | |
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,7 @@ on: | |
| release: | ||
| types: [published] | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| jobs: | ||
| dispatch: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ on: | |
| branches: [main] | ||
| workflow_dispatch: | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| jobs: | ||
| mirror: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,6 +7,7 @@ name: Push email notification | |
| on: | ||
| push: {} | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| jobs: | ||
| notify: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ on: | |
| branches: [main, master] | ||
| pull_request: | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| jobs: | ||
| rust-ci: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ on: | |
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| actions: read | ||
| contents: read | ||
|
|
||
| jobs: | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,29 +1,18 @@ | ||
| ;; SPDX-License-Identifier: MPL-2.0 | ||
| ;; guix.scm — GNU Guix package definition for palimpsest-plasma | ||
| ;; Usage: guix shell -f guix.scm (development shell) | ||
| ;; | ||
| ;; Note: cargo inputs are not vendored here — this definition provides a | ||
| ;; development shell (rust + cargo), not a fully reproducible build. Vendor | ||
| ;; the crate inputs if a reproducible `guix build` is needed. | ||
| ; SPDX-License-Identifier: MPL-2.0 | ||
| ;; guix.scm — GNU Guix package definition for squisher-corpus | ||
| ;; Usage: guix shell -f guix.scm | ||
|
|
||
| (use-modules (guix packages) | ||
| (guix build-system cargo) | ||
| (guix gexp) | ||
| ((guix licenses) #:prefix license:) | ||
| (gnu packages rust)) | ||
| (guix build-system gnu) | ||
| (guix licenses)) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
|
||
| (package | ||
| (name "palimpsest-plasma") | ||
| (version "0.2.0") | ||
| (source (local-file "." "palimpsest-plasma-checkout" | ||
| #:recursive? #t)) | ||
| (build-system cargo-build-system) | ||
| (arguments '(#:tests? #f)) | ||
| (synopsis "Deterministic, typed policy engine") | ||
| (description | ||
| "palimpsest-plasma is a deterministic, typed policy engine: define | ||
| machine-readable deontic policies and evaluate repositories against them with | ||
| reproducible results. Includes an SPDX expression parser and zone-aware | ||
| license auditing.") | ||
| (home-page "https://github.com/hyperpolymath/palimpsest-plasma") | ||
| (license license:mpl2.0)) | ||
| (name "squisher-corpus") | ||
| (version "0.1.0") | ||
| (source #f) | ||
| (build-system gnu-build-system) | ||
|
hyperpolymath marked this conversation as resolved.
|
||
| (synopsis "squisher-corpus") | ||
| (description "squisher-corpus — part of the hyperpolymath ecosystem.") | ||
| (home-page "https://github.com/hyperpolymath/squisher-corpus") | ||
| (license ((@@ (guix licenses) license) "PMPL-1.0-or-later" | ||
| "https://github.com/hyperpolymath/palimpsest-license"))) | ||
Uh oh!
There was an error while loading. Please reload this page.