diff --git a/.github/workflows/add_to_octokit_project.yml b/.github/workflows/add_to_octokit_project.yml deleted file mode 100644 index 936e1f4f8..000000000 --- a/.github/workflows/add_to_octokit_project.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Add PRs and issues to Octokit org project - -on: - issues: - types: [reopened, opened] - pull_request_target: - types: [reopened, opened] - -jobs: - add-to-project: - name: Add issue to project - runs-on: ubuntu-latest - continue-on-error: true - steps: - - uses: actions/add-to-project@v1.0.1 - with: - project-url: https://github.com/orgs/octokit/projects/10 - github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }} - labeled: "Status: Stale" - label-operator: NOT diff --git a/.github/workflows/immediate-response.yml b/.github/workflows/immediate-response.yml deleted file mode 100644 index 8a29b200f..000000000 --- a/.github/workflows/immediate-response.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Issue/PR response -permissions: - issues: write - pull-requests: write -on: - issues: - types: - - opened - pull_request_target: - types: - - opened -jobs: - respond-to-issue: - if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }} - runs-on: ubuntu-latest - steps: - - name: Determine issue or PR number - id: extract - run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" - - - name: Respond to issue or PR - uses: peter-evans/create-or-update-comment@v4 - with: - issue-number: ${{ steps.extract.outputs.NUMBER }} - body: > - 👋 Hi! Thank you for this contribution! Just to let you know, our GitHub SDK team does a round of issue and PR reviews twice a week, every Monday and Friday! - We have a [process in place](https://github.com/octokit/.github/blob/main/community/prioritization_response.md#overview) for prioritizing and responding to your input. - Because you are a part of this community please feel free to comment, add to, or pick up any issues/PRs that are labeled with `Status: Up for grabs`. - You & others like you are the reason all of this works! So thank you & happy coding! 🚀 diff --git a/src/GitHub/Models/Job.cs b/src/GitHub/Models/Job.cs index 8be75d7a9..3beae8ed1 100644 --- a/src/GitHub/Models/Job.cs +++ b/src/GitHub/Models/Job.cs @@ -54,7 +54,7 @@ public partial class Job : IAdditionalDataHolder, IParsable public string HtmlUrl { get; set; } #endif /// The id of the job. - public int? Id { get; set; } + public long? Id { get; set; } /// Labels for the workflow job. Specified by the "runs_on" attribute in the action's workflow file. #if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER #nullable enable @@ -171,7 +171,7 @@ public virtual IDictionary> GetFieldDeserializers() { "head_branch", n => { HeadBranch = n.GetStringValue(); } }, { "head_sha", n => { HeadSha = n.GetStringValue(); } }, { "html_url", n => { HtmlUrl = n.GetStringValue(); } }, - { "id", n => { Id = n.GetIntValue(); } }, + { "id", n => { Id = n.GetLongValue(); } }, { "labels", n => { Labels = n.GetCollectionOfPrimitiveValues()?.AsList(); } }, { "name", n => { Name = n.GetStringValue(); } }, { "node_id", n => { NodeId = n.GetStringValue(); } }, @@ -203,7 +203,7 @@ public virtual void Serialize(ISerializationWriter writer) writer.WriteStringValue("head_branch", HeadBranch); writer.WriteStringValue("head_sha", HeadSha); writer.WriteStringValue("html_url", HtmlUrl); - writer.WriteIntValue("id", Id); + writer.WriteLongValue("id", Id); writer.WriteCollectionOfPrimitiveValues("labels", Labels); writer.WriteStringValue("name", Name); writer.WriteStringValue("node_id", NodeId);