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

Adding Floe action #810

Closed
wants to merge 5 commits into from
Closed
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
3 changes: 3 additions & 0 deletions .floe/actions/review-action/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ["custom/library"],
};
Empty file.
17 changes: 17 additions & 0 deletions .floe/actions/review-action/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @floe/review-action

## 0.1.0-beta.3

### Patch Changes

- Updated dependencies [2cae03a]
- @floe/requests@0.1.0-beta.4
- @floe/features@0.1.0-beta.3

## 0.1.0-beta.2

### Patch Changes

- Updated dependencies
- @floe/features@0.1.0-beta.2
- @floe/requests@0.1.0-beta.3
6 changes: 6 additions & 0 deletions .floe/actions/review-action/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: "Floe Validator"
description: "Floe Validator"

runs:
using: "node20"
main: "./dist/index.js"
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export {};
//# sourceMappingURL=index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export interface Inputs {
token: string;
}
//# sourceMappingURL=types.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading