Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create GitHub Release

on:
push:
tags:
- "v*" # Trigger when a version tag is pushed (e.g., v1.0.0)

jobs:
create-release:
runs-on: ubuntu-latest

permissions:
contents: write

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Create GitHub Release with Auto-Generated Notes
uses: ncipollo/release-action@v1
with:
tag: ${{ github.ref_name }}
name: copilot.el ${{ github.ref_name }}
prerelease: ${{ contains(github.ref, '-rc') || contains(github.ref, '-alpha') || contains(github.ref, '-beta') }}
generateReleaseNotes: true # Auto-generate release notes based on PRs and commits
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2022-2024 copilot-emacs maintainers
Copyright (c) 2022-2025 copilot-emacs maintainers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
2 changes: 1 addition & 1 deletion copilot-balancer.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;;; copilot-balancer.el --- Parentheses balancer for Lisps -*- lexical-binding:t -*-

;; Copyright (C) 2022-2024 copilot-emacs maintainers
;; Copyright (C) 2022-2025 copilot-emacs maintainers

;; The MIT License (MIT)

Expand Down
4 changes: 2 additions & 2 deletions copilot.el
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
;;; copilot.el --- An unofficial Copilot plugin -*- lexical-binding: t; -*-

;; Copyright (C) 2022-2024 copilot-emacs maintainers
;; Copyright (C) 2022-2025 copilot-emacs maintainers

;; Author: zerol <[email protected]>
;; Maintainer: Emil van der Westhuizen
;; Shen, Jen-Chieh <[email protected]>
;; Rakotomandimby Mihamina <[email protected]>
;; URL: https://github.com/copilot-emacs/copilot.el
;; Package-Requires: ((emacs "27.2") (editorconfig "0.8.2") (jsonrpc "1.0.14") (f "0.20.0"))
;; Version: 0.0.1
;; Version: 0.1.0
;; Keywords: convenience copilot

;; The MIT License (MIT)
Expand Down