1## Introduction
2
3Describes steps to troubleshoot the AndroidX GitHub workflow.
4
5## F.A.Q
6
7### Workflows are not automatically triggered ?
8
9- You can manually trigger a `Workflow`. To do this, you will need a GitHub personal access token. You can create a token by going to `Settings -> Developer Settings -> Personal Access Tokens`. Make sure you have the `repo` and `workflow` scopes selected when creating the token. You can then trigger the workflow by using this command.
10
11  ``` bash
12  curl -X "POST" "https://api.github.com/repos/<username>/androidx/actions/workflows/presubmit.yml/dispatches" \
13     -H 'Accept: application/vnd.github.v3+json' \
14     -H 'Authorization: token <access_token>' \
15     -H 'Content-Type: text/plain; charset=utf-8' \
16     -d $'{"ref": "<your branch name>"}'
17  ```
18