├── .gitignore ├── LICENSE.md ├── README.md ├── cli-prompts.md ├── documentation-prompts.md ├── github-actions-prompts.md ├── github-code-search-prompts.md ├── img ├── github-actions-avatar.png ├── let-me-github-search-that-for-you.png ├── let-me-google-that-for-you.png └── rest-of-the-owl.jpeg ├── internal └── marshal-participant-email-addresses.R ├── materials ├── pkg-dev-posit-conf-2024-GHA-cli.pdf ├── pkg-dev-posit-conf-2024-documentation.pdf ├── pkg-dev-posit-conf-2024-introduction.pdf └── pkg-dev-posit-conf-2024-testing.pdf ├── pkg-dev.Rproj └── testing-prompts.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/README.md -------------------------------------------------------------------------------- /cli-prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/cli-prompts.md -------------------------------------------------------------------------------- /documentation-prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/documentation-prompts.md -------------------------------------------------------------------------------- /github-actions-prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/github-actions-prompts.md -------------------------------------------------------------------------------- /github-code-search-prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/github-code-search-prompts.md -------------------------------------------------------------------------------- /img/github-actions-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/img/github-actions-avatar.png -------------------------------------------------------------------------------- /img/let-me-github-search-that-for-you.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/img/let-me-github-search-that-for-you.png -------------------------------------------------------------------------------- /img/let-me-google-that-for-you.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/img/let-me-google-that-for-you.png -------------------------------------------------------------------------------- /img/rest-of-the-owl.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/img/rest-of-the-owl.jpeg -------------------------------------------------------------------------------- /internal/marshal-participant-email-addresses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/internal/marshal-participant-email-addresses.R -------------------------------------------------------------------------------- /materials/pkg-dev-posit-conf-2024-GHA-cli.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/materials/pkg-dev-posit-conf-2024-GHA-cli.pdf -------------------------------------------------------------------------------- /materials/pkg-dev-posit-conf-2024-documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/materials/pkg-dev-posit-conf-2024-documentation.pdf -------------------------------------------------------------------------------- /materials/pkg-dev-posit-conf-2024-introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/materials/pkg-dev-posit-conf-2024-introduction.pdf -------------------------------------------------------------------------------- /materials/pkg-dev-posit-conf-2024-testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/materials/pkg-dev-posit-conf-2024-testing.pdf -------------------------------------------------------------------------------- /pkg-dev.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/pkg-dev.Rproj -------------------------------------------------------------------------------- /testing-prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posit-conf-2024/pkg-dev/HEAD/testing-prompts.md --------------------------------------------------------------------------------