Skip to content

Commit b927779

Browse files
committed
Update author information in action.yml and package.json; enhance documentation clarity by refining comments and examples in code files.
1 parent b93384f commit b927779

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Landa Messenger
3+
Copyright (c) 2026 vypdev
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "Copilot"
22
description: "Automates branch management, GitHub project linking, and issue/PR tracking with Git-Flow methodology."
3-
author: "Landa Messenger"
3+
author: "Efra Espada"
44
inputs:
55
debug:
66
description: "Enable debug mode."

build/cli/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58096,11 +58096,11 @@ function copySetupFiles(cwd) {
5809658096
Object.defineProperty(exports, "__esModule", ({ value: true }));
5809758097
exports.getTaskEmoji = getTaskEmoji;
5809858098
/**
58099-
* Emoji representativo por tarea para los logs "Executing {taskId}".
58100-
* Facilita identificar visualmente el tipo de paso en la salida del action.
58099+
* Representative emoji per task for "Executing {taskId}" logs.
58100+
* Makes it easier to visually identify the step type in the action output.
5810158101
*/
5810258102
const TASK_EMOJI = {
58103-
// Use cases principales
58103+
// Main use cases
5810458104
CommitUseCase: '📤',
5810558105
IssueUseCase: '📋',
5810658106
PullRequestUseCase: '🔀',

build/github_action/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53573,11 +53573,11 @@ function copySetupFiles(cwd) {
5357353573
Object.defineProperty(exports, "__esModule", ({ value: true }));
5357453574
exports.getTaskEmoji = getTaskEmoji;
5357553575
/**
53576-
* Emoji representativo por tarea para los logs "Executing {taskId}".
53577-
* Facilita identificar visualmente el tipo de paso en la salida del action.
53576+
* Representative emoji per task for "Executing {taskId}" logs.
53577+
* Makes it easier to visually identify the step type in the action output.
5357853578
*/
5357953579
const TASK_EMOJI = {
53580-
// Use cases principales
53580+
// Main use cases
5358153581
CommitUseCase: '📤',
5358253582
IssueUseCase: '📋',
5358353583
PullRequestUseCase: '🔀',

build/github_action/src/data/repository/branch_repository.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export declare class BranchRepository {
3333
totalCommits: number;
3434
files: {
3535
filename: string;
36-
status: "added" | "removed" | "modified" | "renamed" | "copied" | "changed" | "unchanged";
36+
status: "modified" | "added" | "removed" | "renamed" | "copied" | "changed" | "unchanged";
3737
additions: number;
3838
deletions: number;
3939
changes: number;

docs/authentication.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Copilot requires a fine-grained personal access token to perform certain actions
1313
<Step title="Who is the bot?">
1414
Choose which account will be used to create your PAT. This account will act as your bot.
1515
- For individual developers, it is recommended to use your own account as the bot.
16-
- In organizations and enterprise accounts, it is better to use a separate, dedicated account. For example, this project belongs to [**vypdev**](https://github.com/vypdev), and the selected bot account is [**landa-bot**](https://github.com/landa-bot).
16+
- In organizations and enterprise accounts, it is better to use a separate, dedicated account. For example, this project belongs to [**vypdev**](https://github.com/vypdev), and the selected bot account is [**vypbot**](https://github.com/vypbot).
1717
</Step>
1818

1919
<Step title="Create the PAT">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"lint:fix": "eslint src --fix"
1616
},
1717
"keywords": [],
18-
"author": "Landa Messenger",
18+
"author": "Efra Espada",
1919
"license": "ISC",
2020
"dependencies": {
2121
"@actions/cache": "^4.0.3",

0 commit comments

Comments
 (0)