You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Continually monitor and modernize your enterprise applications.
4
+
5
+
## Requirements
6
+
7
+
The action requires that you provide the login credentials for your [Tidal Accelerator workspace](https://tidalcloud.com/accelerator/). We recommend creating a `service user` specifically for using this action.
8
+
9
+
## Usage
10
+
11
+
To use this action, you need to provide the following inputs:
12
+
13
+
### Inputs
14
+
15
+
-`tidal-email` (required): The email for the Tidal Accelerator service user.
16
+
17
+
-`tidal-password` (required): The password for the Tidal Accelerator service user.
18
+
19
+
-`tidal-url` (required): The workspace URL for your Tidal Accelerator Account, for example, `https://workspace.tidal.cloud`.
20
+
21
+
-`app-id` (required): The ID of the application that is being this action is analyzing
22
+
23
+
### Example Workflow
24
+
25
+
Here is an example workflow that uses this GitHub Action:
26
+
27
+
```yaml
28
+
name: Tidal Accelerator Workflow
29
+
30
+
on:
31
+
push:
32
+
branches:
33
+
- main
34
+
35
+
jobs:
36
+
build:
37
+
runs-on: ubuntu-latest
38
+
39
+
steps:
40
+
- name: Checkout code
41
+
uses: actions/checkout@v4
42
+
43
+
- uses: tidalmigrations/tidal-code-action@v0
44
+
with:
45
+
tidal-email: ${{ secrets.TIDAL_EMAIL }}
46
+
tidal-password: ${{ secrets.TIDAL_PASSWORD }}
47
+
tidal-url: https://workspace.tidal.cloud
48
+
app-id: 1
49
+
```
50
+
51
+
Make sure to store your sensitive information (like `TIDAL_EMAIL`, `TIDAL_PASSWORD`) as [secrets](https://docs.github.com/en/actions/security-guides/using-secrets-in-github-actions) in your repository settings to keep them secure.
52
+
53
+
## License
54
+
55
+
This GitHub Action is licensed under the [MIT License](./LICENSE)
56
+
57
+
Feel free to contribute, report issues, or request new features on [GitHub](https://github.com/tidalmigrations/tidal-code-action).
0 commit comments