Skip to content

Commit

Permalink
Update license to AGPLv3
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin committed Aug 9, 2024
1 parent f6ccaf1 commit db05add
Show file tree
Hide file tree
Showing 11 changed files with 783 additions and 1 deletion.
661 changes: 661 additions & 0 deletions COPYING

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,7 @@ jobs:
reviewers: ${{ github.event.pull_request.user.login }}
delete-branch: true
```
## License
This software is licensed AGPLv3. See [COPYING](./COPYING).
2 changes: 1 addition & 1 deletion run/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "jest",
"readme": "npx action-docs -u && prettier --write README.md"
},
"license": "MIT",
"license": "AGPL-3.0-only",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
Expand Down
15 changes: 15 additions & 0 deletions run/src/inputs.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/* Copyright (C) 2024 Patrick Brisbin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import * as core from "@actions/core";
import * as github from "@actions/github";

Expand Down
15 changes: 15 additions & 0 deletions run/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/* Copyright (C) 2024 Patrick Brisbin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import * as core from "@actions/core";
import * as github from "@actions/github";
import * as exec from "@actions/exec";
Expand Down
15 changes: 15 additions & 0 deletions run/src/outputs.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/* Copyright (C) 2024 Patrick Brisbin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import * as core from "@actions/core";

export type Outputs = {
Expand Down
15 changes: 15 additions & 0 deletions run/src/process.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/* Copyright (C) 2024 Patrick Brisbin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import * as exec from "@actions/exec";

export async function runProcess(cmd: string, args: string[]): Promise<number> {
Expand Down
15 changes: 15 additions & 0 deletions run/src/pull-request.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/* Copyright (C) 2024 Patrick Brisbin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import * as fs from "fs";
import * as temp from "temp";

Expand Down
14 changes: 14 additions & 0 deletions setup-demo/action.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Copyright (C) 2024 Patrick Brisbin
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
name: Create files for demoing (or testing) Restyled
author: pbrisbin

Expand Down
14 changes: 14 additions & 0 deletions setup-demo/bin/generate-test-files
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
#!/usr/bin/env ruby
# Copyright (C) 2024 Patrick Brisbin
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
require "optparse"
require "yaml"
require "logger"
Expand Down
14 changes: 14 additions & 0 deletions setup/action.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Copyright (C) 2024 Patrick Brisbin
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
name: Setup the Restyler CLI
author: pbrisbin

Expand Down

0 comments on commit db05add

Please sign in to comment.