Skip to content

Commit dae3270

Browse files
authored
✨ Prevent CI workflows from running on a latest changes commit, add [skip ci] to commit message (#76)
This will prevent ci being run on commits from latest-changes. See: https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/skipping-workflow-runs
1 parent cbb4e76 commit dae3270

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

latest_changes/main.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
from pydantic import BaseModel, SecretStr
1212
from pydantic_settings import BaseSettings
1313

14+
COMMIT_MESSAGE = """
15+
📝 Update release notes
16+
17+
[skip ci]
18+
""".strip()
1419

1520
class Section(BaseModel):
1621
label: str
@@ -248,7 +253,7 @@ def main() -> None:
248253
subprocess.run(
249254
["git", "add", str(settings.input_latest_changes_file)], check=True
250255
)
251-
subprocess.run(["git", "commit", "-m", "📝 Update release notes"], check=True)
256+
subprocess.run(["git", "commit", "-m", COMMIT_MESSAGE], check=True)
252257
logging.info(f"Pushing changes: {settings.input_latest_changes_file}")
253258

254259
result = subprocess.run(["git", "push"])

0 commit comments

Comments
 (0)