Skip to content

Commit 9323054

Browse files
committed
chore(ci): update workflow, add notes, and update README
1 parent 9cbe666 commit 9323054

File tree

4 files changed

+177
-27
lines changed

4 files changed

+177
-27
lines changed

.github/workflows/nytimes.yml

+11-27
Original file line numberDiff line numberDiff line change
@@ -55,33 +55,17 @@ jobs:
5555
env:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757

58-
- name: Update Release Hash
59-
if: steps.nytimes_update.outputs.nytimes_updated == 'true'
60-
run: python scripts/release/update_release.py
61-
62-
- name: Setup Pages
63-
if: steps.nytimes_update.outputs.nytimes_updated == 'true'
64-
uses: actions/configure-pages@v5
65-
66-
- name: Build with Jekyll
67-
if: steps.nytimes_update.outputs.nytimes_updated == 'true'
68-
uses: actions/jekyll-build-pages@v1
69-
with:
70-
source: ./
71-
destination: ./_site
72-
73-
- name: Upload Artifact
74-
if: steps.nytimes_update.outputs.nytimes_updated == 'true'
75-
uses: actions/upload-pages-artifact@v3
76-
77-
- name: Deploy to GitHub Pages
78-
if: steps.nytimes_update.outputs.nytimes_updated == 'true'
79-
id: deployment
80-
uses: actions/deploy-pages@v4
81-
82-
- name: Send Telegram Message
58+
- name: Trigger Workflow gh-pages
8359
if: steps.nytimes_update.outputs.nytimes_updated == 'true'
8460
run: |
85-
python scripts/release/telegram_bot.py --job send_message
61+
curl -L \
62+
-X POST \
63+
-H "Accept: application/vnd.github+json" \
64+
-H "Authorization: Bearer ${{ env.GITHUB_TOKEN }}" \
65+
-H "X-GitHub-Api-Version: 2022-11-28" \
66+
https://api.github.com/repos/lzwjava/lzwjava.github.io/actions/workflows/gh-pages.yml/dispatches \
67+
-d '{"ref": "main"}'
8668
env:
87-
TELEGRAM_BOT_API_KEY: ${{ secrets.TELEGRAM_BOT_API_KEY }}
69+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70+
71+

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# lzwjava.github.io
22

3+
[![Deploy Jekyll](https://github.com/lzwjava/lzwjava.github.io/actions/workflows/gh-pages.yml/badge.svg?branch=main)](https://github.com/lzwjava/lzwjava.github.io/actions/workflows/gh-pages.yml)
4+
35
Welcome to my personal blog! Here, I share my thoughts, experiences, and knowledge on various topics.
46

57
## Key Improvements

notes/2025-03-15-dependabot-en.md

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: Removing Dependabot
3+
lang: en
4+
layout: post
5+
audio: false
6+
translated: false
7+
generated: true
8+
---
9+
10+
To remove Dependabot from GitHub Actions, you need to disable its ability to create pull requests that trigger workflows and, optionally, remove any custom workflows specifically tied to Dependabot. Below are the steps to achieve this. Note that I assume "dependant bot" in your query refers to "Dependabot," a common tool in GitHub for dependency management.
11+
12+
---
13+
14+
### Step 1: Disable Dependabot Version Updates
15+
Dependabot version updates automatically create pull requests to keep your dependencies up to date. These pull requests can trigger GitHub Actions workflows. To disable this feature:
16+
17+
- **Locate the Configuration File**: Check your repository for a file named `dependabot.yml` in the `.github` directory.
18+
- **Remove the File**: If it exists, delete the `dependabot.yml` file and commit this change. This stops Dependabot from creating pull requests for version updates.
19+
- **Verify**: If no `dependabot.yml` file exists, version updates are already disabled.
20+
21+
---
22+
23+
### Step 2: Disable Dependabot Security Updates
24+
Dependabot security updates generate pull requests to fix vulnerabilities in your dependencies, which can also trigger GitHub Actions workflows. To turn this off:
25+
26+
- **Go to Repository Settings**: In your GitHub repository, click on the **Settings** tab.
27+
- **Navigate to Security Settings**: Scroll to **Security & analysis** (or **Code security and analysis**, depending on your GitHub interface).
28+
- **Disable Security Updates**: Find **Dependabot security updates** and click **Disable**.
29+
30+
This prevents Dependabot from creating pull requests for security fixes.
31+
32+
---
33+
34+
### Step 3: (Optional) Remove Custom Dependabot-Related Workflows
35+
If you’ve set up GitHub Actions workflows specifically to handle Dependabot pull requests (e.g., auto-merging, labeling, or using Dependabot metadata), you may want to clean them up:
36+
37+
- **Check Workflow Files**: Look in the `.github/workflows` directory for YAML files.
38+
- **Identify Dependabot Logic**: Search for conditions like `if: github.event.pull_request.user.login == 'dependabot[bot]'` or actions such as `dependabot/fetch-metadata`.
39+
- **Remove or Modify**: Delete these workflows or adjust them to remove Dependabot-specific logic, then commit the changes.
40+
41+
This step is optional because disabling Dependabot in Steps 1 and 2 will stop it from creating new pull requests, meaning existing workflows won’t be triggered by Dependabot anymore. However, removing these workflows ensures a complete cleanup.
42+
43+
---
44+
45+
### Additional Notes
46+
- **Existing Pull Requests**: Disabling Dependabot doesn’t close existing pull requests it created. These may still trigger workflows if updated. You can manually close them if needed.
47+
- **Dependabot Alerts**: If you also want to stop vulnerability notifications (not directly tied to GitHub Actions), go to **Settings > Security & analysis** and disable **Dependabot alerts**. This is optional and unrelated to workflow triggers.
48+
49+
---
50+
51+
### Result
52+
By completing Steps 1 and 2, Dependabot will no longer create pull requests in your repository, effectively "removing" its influence on GitHub Actions. If you’ve customized workflows for Dependabot, Step 3 ensures all related automation is gone. Your GitHub Actions will now only run based on other events, unaffected by Dependabot.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
---
2+
title: Triggering GitHub Actions
3+
lang: en
4+
layout: post
5+
audio: false
6+
translated: false
7+
generated: true
8+
---
9+
10+
Yes, a GitHub Action can trigger another GitHub Action, though not directly. GitHub Actions workflows are typically triggered by specific events like pushes, pull requests, or schedules, but there are several indirect methods to make one workflow trigger another. Below are the primary ways this can be achieved:
11+
12+
---
13+
14+
### 1. Using the `workflow_dispatch` Event
15+
You can trigger a workflow programmatically using the `workflow_dispatch` event via the GitHub API. This allows one workflow to initiate another that is configured to listen for this event.
16+
17+
- **How it works**: The first workflow makes an API call to trigger the second workflow.
18+
- **Example**:
19+
```yaml
20+
name: Trigger Another Workflow
21+
on: [push]
22+
jobs:
23+
trigger:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: Trigger Workflow
27+
run: |
28+
curl -X POST \
29+
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
30+
-H "Accept: application/vnd.github.v3+json" \
31+
https://api.github.com/repos/<owner>/<repo>/actions/workflows/<workflow_id>/dispatches \
32+
-d '{"ref": "main"}'
33+
```
34+
Replace `<owner>`, `<repo>`, and `<workflow_id>` with your repository details and the target workflow's ID. The second workflow must include `on: [workflow_dispatch]` in its configuration.
35+
36+
---
37+
38+
### 2. Using Repository Dispatch Events
39+
A workflow can send a custom event using a repository dispatch, which another workflow can listen for and trigger on.
40+
41+
- **How it works**: The first workflow sends a repository dispatch event via the GitHub API, and the second workflow responds to that event.
42+
- **Example**:
43+
- First workflow (sends the event):
44+
```yaml
45+
name: Send Dispatch Event
46+
on: [push]
47+
jobs:
48+
send-dispatch:
49+
runs-on: ubuntu-latest
50+
steps:
51+
- name: Send Dispatch
52+
run: |
53+
curl -X POST \
54+
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
55+
-H "Accept: application/vnd.github.v3+json" \
56+
https://api.github.com/repos/<owner>/<repo>/dispatches \
57+
-d '{"event_type": "custom_event"}'
58+
```
59+
- Second workflow (triggered by the event):
60+
```yaml
61+
name: Triggered by Dispatch
62+
on:
63+
repository_dispatch:
64+
types: [custom_event]
65+
jobs:
66+
respond:
67+
runs-on: ubuntu-latest
68+
steps:
69+
- name: Respond to Event
70+
run: echo "Triggered by custom_event"
71+
```
72+
73+
---
74+
75+
### 3. Triggering via Git Events
76+
One workflow can trigger another by generating a Git event, such as creating a commit or opening a pull request, which the second workflow is set to respond to.
77+
78+
- **How it works**: The first workflow modifies the repository (e.g., by pushing a commit), triggering a second workflow configured for that event (e.g., `on: [push]`).
79+
- **Example**:
80+
```yaml
81+
name: Create Commit
82+
on: [push]
83+
jobs:
84+
create-commit:
85+
runs-on: ubuntu-latest
86+
steps:
87+
- name: Checkout
88+
uses: actions/checkout@v2
89+
- name: Create File
90+
run: echo "New file" > newfile.txt
91+
- name: Commit and Push
92+
run: |
93+
git config user.name "GitHub Action"
94+
git config user.email "[email protected]"
95+
git add newfile.txt
96+
git commit -m "Add new file"
97+
git push
98+
```
99+
This could trigger another workflow set to run on `push` events.
100+
101+
---
102+
103+
### Key Considerations
104+
- **Permissions**: The GitHub token used in API calls must have sufficient permissions to trigger workflows or send dispatch events.
105+
- **Rate Limits**: Be aware of GitHub's API rate limits, especially for frequently running workflows.
106+
- **Avoid Loops**: Prevent infinite loops by adding conditions to stop workflows from endlessly triggering each other.
107+
- **Configuration**: Ensure the target workflow is correctly set up to listen for the intended event.
108+
109+
---
110+
111+
### Conclusion
112+
While GitHub Actions doesn’t offer a direct mechanism for one workflow to call another, you can achieve this indirectly using `workflow_dispatch`, repository dispatch events, or Git events like commits or pull requests. These methods allow you to chain or trigger workflows effectively based on your needs.

0 commit comments

Comments
 (0)