> For the complete documentation index, see [llms.txt](https://note.onurbolatoglu.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://note.onurbolatoglu.com/github-actions/manuel-events.md).

# Manuel Events

Normalde GitHub Actions, genelde push/pull request gibi olaylar ya da cron zamanlamasıyla otomatik tetiklenir. Ancak bazı durumlarda, üç farklı şekilde manuel olarak tetikleme yapabiliriz:

* **GitHub UI** (GitHub arayüzünden “Run workflow” butonu vb.)
* **GitHub CLI** (Terminalde `gh` komut satırı aracıyla)
* **GitHub REST API** (API çağrısı yaparak)

```bash
gh workflow run greet.yml \
  -f name=mona \
  -f greeting=hello \
  -F data=@myfile.txt
```

* `gh workflow run greet.yml` komutu, `greet.yml` adlı bir GitHub Actions iş akışını başlatıyor.
* `-f name=mona` ve `-f greeting=hello` gibi parametreler, iş akışında `inputs` veya benzeri değişkenleri varsa bunları doldurmak için kullanılıyor.
* `-F data=@myfile.txt` ile de bir dosya (örneğin `myfile.txt`) doğrudan payload olarak aktarılabiliyor. (Buradaki fark: `-f` parametreyi düz metin gönderirken, `-F` form-data veya dosya gönderimi için kullanılır.)

{% embed url="<https://cli.github.com/manual/gh_workflow>" %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://note.onurbolatoglu.com/github-actions/manuel-events.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
