diff --git a/action.yaml b/action.yaml index 1f614a94..add38535 100644 --- a/action.yaml +++ b/action.yaml @@ -5,105 +5,98 @@ metadata: name: setup-stackspot-workflows display-name: StackSpot Setup Workflows. description: Action to configure Stackspot workflows in SCM provider - version: 0.0.1 -spec: + version: 1.0.0 +spec: type: python + docs: + pt_br: docs_action/pt-br/doc.md + en_us: docs_action/en-us/doc.md inputs: - - label: SCM provider - name: provider - type: text - items: - - Azure - - Bitbucket - - Github - - Gitlab - - - label: Personal Access Token - name: pat - type: password - condition: - variable: provider - operator: containsAny - value: - - Azure - - Github - - Gitlab - - - label: Project Name - name: project_name - type: text - condition: - variable: provider - operator: containsAny - value: - - Azure - - Gitlab - - - label: Project Key - name: project_key - type: text - condition: - variable: provider - operator: containsAny - value: - - Bitbucket - - - label: Organization Name - name: org_name - type: text - condition: - variable: provider - operator: containsAny - value: - - Azure - - Github - - - label: Repository Name - name: repo_name - type: text - condition: - variable: provider - operator: containsAny - value: - - Github - - Bitbucket - - Azure - - - label: Group Name - name: group_name - type: text - condition: - variable: provider - operator: containsAny - value: - - Gitlab - - - label: Workspace Name - name: workspace_name - type: text - condition: - variable: provider - operator: containsAny - value: - - Bitbucket - - - label: Client Key - name: client_key - type: text - condition: - variable: provider - operator: containsAny - value: - - Bitbucket - - - label: Client Secret - name: client_secret - type: password - condition: - variable: provider - operator: containsAny - value: - - Bitbucket - + - label: SCM provider + name: provider + type: text + items: + - Azure + - Bitbucket + - Github + - Gitlab + - label: Personal Access Token + name: pat + type: password + condition: + variable: provider + operator: containsAny + value: + - Azure + - Github + - Gitlab + - label: Project Name + name: project_name + type: text + condition: + variable: provider + operator: containsAny + value: + - Azure + - Gitlab + - label: Project Key + name: project_key + type: text + condition: + variable: provider + operator: containsAny + value: + - Bitbucket + - label: Organization Name + name: org_name + type: text + condition: + variable: provider + operator: containsAny + value: + - Azure + - Github + - label: Repository Name + name: repo_name + type: text + condition: + variable: provider + operator: containsAny + value: + - Github + - Bitbucket + - Azure + - label: Group Name + name: group_name + type: text + condition: + variable: provider + operator: containsAny + value: + - Gitlab + - label: Workspace Name + name: workspace_name + type: text + condition: + variable: provider + operator: containsAny + value: + - Bitbucket + - label: Client Key + name: client_key + type: text + condition: + variable: provider + operator: containsAny + value: + - Bitbucket + - label: Client Secret + name: client_secret + type: password + condition: + variable: provider + operator: containsAny + value: + - Bitbucket python: - script: stackspot-actions/setup-stackspot-workflows/main.py \ No newline at end of file + script: stackspot-actions/setup-stackspot-workflows/main.py diff --git a/docs_action/en-us/doc.md b/docs_action/en-us/doc.md new file mode 100644 index 00000000..21b12a03 --- /dev/null +++ b/docs_action/en-us/doc.md @@ -0,0 +1,13 @@ +## About +Action to create a workflow in a repository so that it can be used as a repository for executing StackSpot workflows, +allowing the creation of Apps, Infrastructure and execution of actions through the Portal. +--- +## Implementation +This action will create a workflow according to the selected provider, after that just commit the files to the SCM, and +Enter its URL in the account's SCM configuration on the Stack Spot Portal. +--- +## Requirements +- Account with a supported SCM provider. +--- +## Release Notes +... \ No newline at end of file diff --git a/docs_action/pt-br/doc.md b/docs_action/pt-br/doc.md new file mode 100644 index 00000000..c193ea29 --- /dev/null +++ b/docs_action/pt-br/doc.md @@ -0,0 +1,13 @@ +## Sobre +Action para criar um workflow em um repositório para que esse seja utilizado como repositório de execução de workflows da StackSpot, +permitindo a criação de Apps, Infra e execução de actions pelo Portal. +--- +## Implementação +Essa action irá criar um workflow de acordo com o provider selecionado, após isso basta comitar os arquivos para o SCM, e +informar a url do mesmo na configuração de SCM da conta no Portal da Stack Spot. +--- +## Requerimentos +- Conta em algum provider de SCM suportado. +--- +## Notas da Release +... diff --git a/docs_plugin/en-us/doc.md b/docs_plugin/en-us/doc.md new file mode 100644 index 00000000..6c31d313 --- /dev/null +++ b/docs_plugin/en-us/doc.md @@ -0,0 +1,13 @@ +## About +Plugin to create a workflow in a repository so that it can be used as a repository for executing StackSpot workflows, +allowing the creation of Apps, Infrastructure and execution of actions through the Portal. +--- +## Implementation +This plugin will create a workflow according to the selected provider, after that just commit the files to the SCM, and +Enter its URL in the account's SCM configuration on the Stack Spot Portal. +--- +## Requirements +- Account with a supported SCM provider. +--- +## Release Notes +... \ No newline at end of file diff --git a/docs_plugin/pt-br/doc.md b/docs_plugin/pt-br/doc.md new file mode 100644 index 00000000..3d4842b4 --- /dev/null +++ b/docs_plugin/pt-br/doc.md @@ -0,0 +1,13 @@ +## Sobre +Plugin para criar um workflow em um repositório para que esse seja utilizado como repositório de execução de workflows da StackSpot, +permitindo a criação de Apps, Infra e execução de actions pelo Portal. +--- +## Implementação +Esse plugin irá criar um workflow de acordo com o provider selecionado, após isso basta comitar os arquivos para o SCM, e +informar a url do mesmo na configuração de SCM da conta no Portal da Stack Spot. +--- +## Requerimentos +- Conta em algum provider de SCM suportado. +--- +## Notas da Release +... diff --git a/plugin.yaml b/plugin.yaml index 629c89a6..e48fd6d3 100644 --- a/plugin.yaml +++ b/plugin.yaml @@ -2,59 +2,55 @@ schema-version: v2 kind: plugin metadata: name: setup-runner - display-name: setup-runner + display-name: Setup Runner description: Plugin to setup StackSpot workflows - version: 0.0.1 + version: 1.0.0 picture: plugin.png spec: type: app compatibility: - - python - about: stackspot-actions/setup-stackspot-workflows/docs/about.md - implementation: stackspot-actions/setup-stackspot-workflows/docs/implementation.md - release-notes: stackspot-actions/setup-stackspot-workflows/docs/release-notes-0.0.1.md - requirements: stackspot-actions/setup-stackspot-workflows/docs/requirements.md + - python + docs: + pt_br: docs_plugin/pt-br/doc.md + en_us: docs_plugin/en-us/doc.md repository: https://github.com/stack-spot/stackspot-workflows-action - technologies: # Ref: https://docs.stackspot.com/docs/create-stacks/yaml-files/yaml/#technologies - - Api + technologies: + - Api inputs: - - label: SCM provider - name: provider - type: text - items: - - Azure - - Bitbucket - - Github - - Gitlab + - label: SCM provider + name: provider + type: text + items: + - Azure + - Bitbucket + - Github + - Gitlab hooks: - - type: render-templates - trigger: after-render - path: workflow-templates/azure - condition: - variable: provider - operator: == - value: Azure - - - type: render-templates - trigger: after-render - path: workflow-templates/github - condition: - variable: provider - operator: == - value: Github - - - type: render-templates - trigger: after-render - path: workflow-templates/bitbucket - condition: - variable: provider - operator: == - value: Bitbucket - - - type: render-templates - trigger: after-render - path: workflow-templates/gitlab - condition: - variable: provider - operator: == - value: Gitlab \ No newline at end of file + - type: render-templates + trigger: after-render + path: workflow-templates/azure + condition: + variable: provider + operator: == + value: Azure + - type: render-templates + trigger: after-render + path: workflow-templates/github + condition: + variable: provider + operator: == + value: Github + - type: render-templates + trigger: after-render + path: workflow-templates/bitbucket + condition: + variable: provider + operator: == + value: Bitbucket + - type: render-templates + trigger: after-render + path: workflow-templates/gitlab + condition: + variable: provider + operator: == + value: Gitlab diff --git a/stackspot-actions/azure/create-repo-azure/action.yaml b/stackspot-actions/azure/create-repo-azure/action.yaml index 65d9275d..3b96bb40 100644 --- a/stackspot-actions/azure/create-repo-azure/action.yaml +++ b/stackspot-actions/azure/create-repo-azure/action.yaml @@ -7,22 +7,21 @@ metadata: version: 0.0.1 spec: type: python - about: docs/about.md - usage: docs/usage.md - release-notes: docs/release-notes.md - requirements: docs/requirements.md - implementation: docs/implementation.md inputs: - - label: Project name - name: project_name - type: text - required: true - help: Input the Azure devOps project name, if it does not exist it will be created - - label: Repository name - name: name - type: text - required: true - help: Input the Azure devOps repository name, if it does not exist it will be created + - label: Project name + name: project_name + type: text + required: true + help: Input the Azure devOps project name, if it does not exist it will be created + - label: Repository name + name: name + type: text + required: true + help: Input the Azure devOps repository name, if it does not exist it will be + created python: workdir: . script: script.py + docs: + pt_br: docs/pt-br/doc.md + en_us: docs/en-us/doc.md diff --git a/stackspot-actions/azure/create-repo-azure/docs/about.md b/stackspot-actions/azure/create-repo-azure/docs/about.md deleted file mode 100644 index 224a0b48..00000000 --- a/stackspot-actions/azure/create-repo-azure/docs/about.md +++ /dev/null @@ -1,4 +0,0 @@ -## Azure create repository action - -Action created by Stackspot to be used into workspace workflows as a before action to create a repository, when the account scm provider is Azure. -The action is functional, but it was build to be simple as an example of how actions of create repository should be implemented. diff --git a/stackspot-actions/azure/create-repo-azure/docs/implementation.md b/stackspot-actions/azure/create-repo-azure/docs/en-us/doc.md similarity index 100% rename from stackspot-actions/azure/create-repo-azure/docs/implementation.md rename to stackspot-actions/azure/create-repo-azure/docs/en-us/doc.md diff --git a/stackspot-actions/azure/create-repo-azure/docs/release-notes.md b/stackspot-actions/azure/create-repo-azure/docs/pt-br/doc.md similarity index 100% rename from stackspot-actions/azure/create-repo-azure/docs/release-notes.md rename to stackspot-actions/azure/create-repo-azure/docs/pt-br/doc.md diff --git a/stackspot-actions/azure/create-repo-azure/docs/usage.md b/stackspot-actions/azure/create-repo-azure/docs/usage.md deleted file mode 100644 index c8899636..00000000 --- a/stackspot-actions/azure/create-repo-azure/docs/usage.md +++ /dev/null @@ -1,18 +0,0 @@ -# Usage - -To execute it locally, it's needed [stackspot cli](https://docs.stackspot.com/home/stk-cli/install) installed, then execute: - -``` -stk run action --inputs-json '{ - "org": "", - "token": "", - "project_name": "", - "name": "" -}' -``` - -To execute it with Stackspot workflow, just follow the steps: -1. [Publish the action](https://docs.stackspot.com/guides/studio-guides/publish-action/) -2. [Add it to a stack](https://docs.stackspot.com/guides/studio-guides/create-stack/) -3. [Add the stack to a workspace](https://docs.stackspot.com/home/workspace/add-stacks/) -4. [Configure the workspace workflow](https://docs.stackspot.com/home/workspace/configure-workflow/) diff --git a/stackspot-actions/bitbucket/create-repo-bitbucket/action.yaml b/stackspot-actions/bitbucket/create-repo-bitbucket/action.yaml index aa40d3bc..50dc4cf9 100644 --- a/stackspot-actions/bitbucket/create-repo-bitbucket/action.yaml +++ b/stackspot-actions/bitbucket/create-repo-bitbucket/action.yaml @@ -7,26 +7,25 @@ metadata: version: 0.0.1 spec: type: python - about: docs/about.md - usage: docs/usage.md - release-notes: docs/release-notes.md - requirements: docs/requirements.md - implementation: docs/implementation.md inputs: - - label: Bitbucket project name - name: project_name - type: text - required: true - help: Input the Bitbucket devOps project name, if it does not exist it will be created - - label: Repository visibility - name: visibility - type: text - required: true - help: Input the Bitbucket repository visibility - items: - - PUBLIC - - PRIVATE - default: PRIVATE + - label: Bitbucket project name + name: project_name + type: text + required: true + help: Input the Bitbucket devOps project name, if it does not exist it will be + created + - label: Repository visibility + name: visibility + type: text + required: true + help: Input the Bitbucket repository visibility + items: + - PUBLIC + - PRIVATE + default: PRIVATE python: workdir: . script: script.py + docs: + pt_br: docs/pt-br/doc.md + en_us: docs/en-us/doc.md diff --git a/stackspot-actions/bitbucket/create-repo-bitbucket/docs/about.md b/stackspot-actions/bitbucket/create-repo-bitbucket/docs/about.md deleted file mode 100644 index bba3e3cd..00000000 --- a/stackspot-actions/bitbucket/create-repo-bitbucket/docs/about.md +++ /dev/null @@ -1,4 +0,0 @@ -## Bitbucket create repository action - -Action created by Stackspot to be used into workspace workflows as a before action to create a repository, when the account scm provider is Bitbucket. -The action is functional, but it was build to be simple as an example of how actions of create repository should be implemented. diff --git a/stackspot-actions/azure/create-repo-azure/docs/requirements.md b/stackspot-actions/bitbucket/create-repo-bitbucket/docs/en-us/doc.md similarity index 100% rename from stackspot-actions/azure/create-repo-azure/docs/requirements.md rename to stackspot-actions/bitbucket/create-repo-bitbucket/docs/en-us/doc.md diff --git a/stackspot-actions/bitbucket/create-repo-bitbucket/docs/implementation.md b/stackspot-actions/bitbucket/create-repo-bitbucket/docs/pt-br/doc.md similarity index 100% rename from stackspot-actions/bitbucket/create-repo-bitbucket/docs/implementation.md rename to stackspot-actions/bitbucket/create-repo-bitbucket/docs/pt-br/doc.md diff --git a/stackspot-actions/bitbucket/create-repo-bitbucket/docs/usage.md b/stackspot-actions/bitbucket/create-repo-bitbucket/docs/usage.md deleted file mode 100644 index c8d01386..00000000 --- a/stackspot-actions/bitbucket/create-repo-bitbucket/docs/usage.md +++ /dev/null @@ -1,19 +0,0 @@ -# Usage - -To execute it locally, it's needed [stackspot cli](https://docs.stackspot.com/home/stk-cli/install) installed, then execute: - -``` -stk run action --inputs-json '{ - "visibility": "[PRIVATE|PUBLIC]", - "project_name": "", - "token": "", - "name": "", - "org": "" -}' -``` - -To execute it with Stackspot workflow, just follow the steps: -1. [Publish the action](https://docs.stackspot.com/guides/studio-guides/publish-action/) -2. [Add it to a stack](https://docs.stackspot.com/guides/studio-guides/create-stack/) -3. [Add the stack to a workspace](https://docs.stackspot.com/home/workspace/add-stacks/) -4. [Configure the workspace workflow](https://docs.stackspot.com/home/workspace/configure-workflow/) diff --git a/stackspot-actions/github/create-repo-github/action.yaml b/stackspot-actions/github/create-repo-github/action.yaml index c4dd7e92..76a175ca 100644 --- a/stackspot-actions/github/create-repo-github/action.yaml +++ b/stackspot-actions/github/create-repo-github/action.yaml @@ -7,25 +7,24 @@ metadata: version: 1.0.2 spec: type: python - about: docs/about.md - usage: docs/usage.md - release-notes: docs/release-notes.md - implementation: docs/implementation.md inputs: - - label: Visibility - name: visibility - type: text - required: true - items: - - public - - internal - - private - help: "Internal repo can only be created by enterprise accounts." - - label: Repository name - name: name - type: text - required: true - help: Input the repository name, if it does not exist it will be created + - label: Visibility + name: visibility + type: text + required: true + items: + - public + - internal + - private + help: Internal repo can only be created by enterprise accounts. + - label: Repository name + name: name + type: text + required: true + help: Input the repository name, if it does not exist it will be created python: workdir: . script: script.py + docs: + pt_br: docs/pt-br/doc.md + en_us: docs/en-us/doc.md diff --git a/stackspot-actions/github/create-repo-github/docs/about.md b/stackspot-actions/github/create-repo-github/docs/about.md deleted file mode 100644 index 5656b030..00000000 --- a/stackspot-actions/github/create-repo-github/docs/about.md +++ /dev/null @@ -1,4 +0,0 @@ -## Gitlab create repository action - -Action created by Stackspot to be used into workspace workflows as a before action to create a repository, when the account scm provider is Github. -The action is functional, but it was build to be simple as an example of how actions of create repository should be implemented. diff --git a/stackspot-actions/bitbucket/create-repo-bitbucket/docs/release-notes.md b/stackspot-actions/github/create-repo-github/docs/en-us/doc.md similarity index 100% rename from stackspot-actions/bitbucket/create-repo-bitbucket/docs/release-notes.md rename to stackspot-actions/github/create-repo-github/docs/en-us/doc.md diff --git a/stackspot-actions/bitbucket/create-repo-bitbucket/docs/requirements.md b/stackspot-actions/github/create-repo-github/docs/pt-br/doc.md similarity index 100% rename from stackspot-actions/bitbucket/create-repo-bitbucket/docs/requirements.md rename to stackspot-actions/github/create-repo-github/docs/pt-br/doc.md diff --git a/stackspot-actions/github/create-repo-github/docs/usage.md b/stackspot-actions/github/create-repo-github/docs/usage.md deleted file mode 100644 index 040a00ba..00000000 --- a/stackspot-actions/github/create-repo-github/docs/usage.md +++ /dev/null @@ -1,18 +0,0 @@ -# Usage - -To execute it locally, it's needed [stackspot cli](https://docs.stackspot.com/home/stk-cli/install) installed, then execute: - -``` -stk run action --inputs-json '{ - "visibility": "[private|public|internal]", - "org": "", - "token": "", - "name": "" -}' -``` - -To execute it with Stackspot workflow, just follow the steps: -1. [Publish the action](https://docs.stackspot.com/guides/studio-guides/publish-action/) -2. [Add it to a stack](https://docs.stackspot.com/guides/studio-guides/create-stack/) -3. [Add the stack to a workspace](https://docs.stackspot.com/home/workspace/add-stacks/) -4. [Configure the workspace workflow](https://docs.stackspot.com/home/workspace/configure-workflow/) diff --git a/stackspot-actions/gitlab/action.yaml b/stackspot-actions/gitlab/action.yaml index dbe568ae..512d4040 100644 --- a/stackspot-actions/gitlab/action.yaml +++ b/stackspot-actions/gitlab/action.yaml @@ -7,31 +7,31 @@ metadata: version: 1.0.0 spec: type: python - about: docs/about.md - usage: docs/usage.md - release-notes: docs/release-notes.md - requirements: docs/requirements.md - implementation: docs/implementation.md inputs: - - label: Gitlab project name - name: name - type: text - required: true - help: Input the Gitlab devOps project/repository name, if it does not exist it will be created - - label: Gitlab group name - name: group_name - type: text - required: true - help: Input the Gitlab group name. It must exist in your Gitlab account as a top-level group - - label: Repository visibility - name: visibility - type: text - required: true - help: Input the Gitlab repository visibility - items: - - public - - private - default: private + - label: Gitlab project name + name: name + type: text + required: true + help: Input the Gitlab devOps project/repository name, if it does not exist it + will be created + - label: Gitlab group name + name: group_name + type: text + required: true + help: Input the Gitlab group name. It must exist in your Gitlab account as a top-level + group + - label: Repository visibility + name: visibility + type: text + required: true + help: Input the Gitlab repository visibility + items: + - public + - private + default: private python: workdir: . script: script.py + docs: + pt_br: docs/pt-br/doc.md + en_us: docs/en-us/doc.md diff --git a/stackspot-actions/gitlab/docs/about.md b/stackspot-actions/gitlab/docs/about.md deleted file mode 100644 index 6628366e..00000000 --- a/stackspot-actions/gitlab/docs/about.md +++ /dev/null @@ -1,27 +0,0 @@ -## Gitlab create repository action - -Action created by Stackspot to be used into workspace workflows as a before action to create a repository, when the account scm provider is Gitlab. -The action is functional, but it was build to be simple as an example of how actions of create repository should be implemented. - -Feel free to clone it and add features before publish it into your studio. But first, before modifying, -there are two points of implementation that a developer should pay attention: - -1. Stackspot workflow api by default, when identifies a "create repository action", -it adds 5 hidden inputs to the stk run action workflow call. -Even if you do not declare then in action.yml they will be added. -But if you declare then in action manifest, the stackspot portal will ask these inputs when you try to dispatch a workflow, then they will not be overwritten. -These inputs are: - - name: copied from the app/infra which will be created by the workflow. - - description: copied from the description of the app/infra which will be created by the workflow. - - org: its the group_name from the workflow url, which is configured into scm integration page. - - token: The token which was configured into scm integration page, it is used to create the repository by the gitlab api. - - workflow_api_authorization: A valid token with the same rules of portal user, which dispatched the workflow, that token can be used to call stackspot apis. - -2. For now, to the workflow work well, the action need to open a file named "stk-local-context.json" and write the name of created repository as value of the following key in the object: -```json -{ - "outputs": { - "created_repository": "" - } -} -``` \ No newline at end of file diff --git a/stackspot-actions/github/create-repo-github/docs/implementation.md b/stackspot-actions/gitlab/docs/en-us/doc.md similarity index 100% rename from stackspot-actions/github/create-repo-github/docs/implementation.md rename to stackspot-actions/gitlab/docs/en-us/doc.md diff --git a/stackspot-actions/gitlab/docs/implementation.md b/stackspot-actions/gitlab/docs/implementation.md deleted file mode 100644 index d8a3080e..00000000 --- a/stackspot-actions/gitlab/docs/implementation.md +++ /dev/null @@ -1,5 +0,0 @@ -## Implementation - -1. Checks if informed group exists, if not, aborts -2. Try to create the project with the inputted name, if it succeeded or the repository already exists -3. Writes the repository https clone path into a file which will be used into stackspot workflows \ No newline at end of file diff --git a/stackspot-actions/github/create-repo-github/docs/release-notes.md b/stackspot-actions/gitlab/docs/pt-br/doc.md similarity index 100% rename from stackspot-actions/github/create-repo-github/docs/release-notes.md rename to stackspot-actions/gitlab/docs/pt-br/doc.md diff --git a/stackspot-actions/gitlab/docs/release-notes.md b/stackspot-actions/gitlab/docs/release-notes.md deleted file mode 100644 index 64fcb557..00000000 --- a/stackspot-actions/gitlab/docs/release-notes.md +++ /dev/null @@ -1,3 +0,0 @@ -# Release Notes 1.0.0 - -- Initial implementation \ No newline at end of file diff --git a/stackspot-actions/gitlab/docs/requirements.md b/stackspot-actions/gitlab/docs/requirements.md deleted file mode 100644 index 213648d7..00000000 --- a/stackspot-actions/gitlab/docs/requirements.md +++ /dev/null @@ -1,5 +0,0 @@ -## Before using this Action - -- Access to a Gitlab account -- A group of gitlab where the project will be associated -- \ No newline at end of file diff --git a/stackspot-actions/gitlab/docs/usage.md b/stackspot-actions/gitlab/docs/usage.md deleted file mode 100644 index 8e458f3e..00000000 --- a/stackspot-actions/gitlab/docs/usage.md +++ /dev/null @@ -1,18 +0,0 @@ -# Usage - -To execute it locally, it's needed [stackspot cli](https://docs.stackspot.com/home/stk-cli/install) installed, then execute: - -``` -stk run action --inputs-json '{ - "visibility": "[private|public]", - "group_name": "", - "token": "", - "name": "" -}' -``` - -To execute it with Stackspot workflow, just follow the steps: -1. [Publish the action](https://docs.stackspot.com/guides/studio-guides/publish-action/) -2. [Add it to a stack](https://docs.stackspot.com/guides/studio-guides/create-stack/) -3. [Add the stack to a workspace](https://docs.stackspot.com/home/workspace/add-stacks/) -4. [Configure the workspace workflow](https://docs.stackspot.com/home/workspace/configure-workflow/) diff --git a/stackspot-actions/setup-stackspot-workflows/docs/about.md b/stackspot-actions/setup-stackspot-workflows/docs/about.md deleted file mode 100644 index fdb647bf..00000000 --- a/stackspot-actions/setup-stackspot-workflows/docs/about.md +++ /dev/null @@ -1 +0,0 @@ -Details about plugin... \ No newline at end of file diff --git a/stackspot-actions/setup-stackspot-workflows/docs/implementation.md b/stackspot-actions/setup-stackspot-workflows/docs/implementation.md deleted file mode 100644 index 5f20a643..00000000 --- a/stackspot-actions/setup-stackspot-workflows/docs/implementation.md +++ /dev/null @@ -1 +0,0 @@ -Implementation details of plugin... \ No newline at end of file diff --git a/stackspot-actions/setup-stackspot-workflows/docs/release-notes-0.0.1.md b/stackspot-actions/setup-stackspot-workflows/docs/release-notes-0.0.1.md deleted file mode 100644 index 44d50844..00000000 --- a/stackspot-actions/setup-stackspot-workflows/docs/release-notes-0.0.1.md +++ /dev/null @@ -1,3 +0,0 @@ -Release Notes 0.0.1 -- Item A -- Item B \ No newline at end of file diff --git a/stackspot-actions/setup-stackspot-workflows/docs/requirements.md b/stackspot-actions/setup-stackspot-workflows/docs/requirements.md deleted file mode 100644 index e6d29c1c..00000000 --- a/stackspot-actions/setup-stackspot-workflows/docs/requirements.md +++ /dev/null @@ -1 +0,0 @@ -Requirements details of plugin... \ No newline at end of file